You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It handles the full login flow programmatically, allowing your tests to sign in without user interaction.
31
+
It handles the full login flow programmatically, allowing your tests to sign in without user interaction. Under the hood, it uses the `dev` option of the `signIn` function:
32
+
33
+
```typescript
34
+
import { signIn } from"@junobuild/core";
35
+
36
+
awaitsignIn({ dev: {} });
37
+
```
32
38
33
39
### Example usage
34
40
35
41
After installing the plugin, you can write a test like this:
0 commit comments