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
Variant name matching is case-insensitive and partial. For example, `--variant 13` will match `nextjs-pages-dir (next@13)` if a matching variant is present in the test app's `package.json`.
35
35
36
+
### Using the Makefile
37
+
38
+
Alternatively, you can use the provided Makefile for an interactive test selection experience:
39
+
40
+
**Prerequisites**: Install `fzf` with Homebrew:
41
+
42
+
```bash
43
+
brew install fzf
44
+
```
45
+
46
+
**Run tests interactively**:
47
+
48
+
```bash
49
+
make run
50
+
```
51
+
52
+
This will display a fuzzy-finder menu of all available test applications. Select one to run it automatically.
53
+
54
+
**List all test applications**:
55
+
56
+
```bash
57
+
make list
58
+
```
59
+
36
60
For example, if you have the following variants in your test app's `package.json`:
0 commit comments