File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ jobs:
6363 if (( ${#FILES[@]} == 0 )); then
6464 echo "⚠️ No test files found under tests/evm — creating fallback smoke test"
6565 mkdir -p tests/evm
66- cat > tests/evm/ci-smoke.test.js <<'EOF'
67- const assert = require("assert");
68- describe("CI Smoke", () => {
69- it("runs to keep CI green", () => {
70- assert.strictEqual(1 + 1, 2);
71- });
72- });
73- EOF
66+ cat > tests/evm/ci-smoke.test.js <<'EOF'
67+ const assert = require("assert");
68+ describe("CI Smoke", () => {
69+ it("runs to keep CI green", () => {
70+ assert.strictEqual(1 + 1, 2);
71+ });
72+ });
73+ EOF
7474 FILES=(tests/evm/ci-smoke.test.js)
7575 fi
7676
8484
8585 echo "Running $((END-START)) tests on shard $INDEX/$PARTS"
8686 xargs -a shard-files.txt npx mocha --reporter spec --timeout 900000 --forbid-only --exit
87+
You can’t perform that action at this time.
0 commit comments