Commit 271f754
committed
fix(scripts): repair the Makefile test paths and the e2e name filter
Three Makefile targets globbed a test/ directory that has never existed here,
so test-unit, test-contract and test-live-check could not run at all.
run-live.mjs selected the end-to-end scenarios with --test-name-pattern=E2E,
which matched only because the titles used to embed an upstream test name.
Renaming the scenarios to snake_case left the pattern matching nothing, so
`make test-e2e` would have exited zero after running no tests; it now matches
the _e2e suffix and selects three scenarios per client.1 parent da26bb6 commit 271f754
2 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
0 commit comments