Skip to content

Commit

Permalink
chore(monorepo): Make placeholder tests fail by default (merge #1960)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal authored Jan 11, 2024
2 parents 5015441 + f25c1ea commit 54af775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"format": "yarn prettier --write .github packages",
"lint": "yarn prettier --check .github packages && lerna run lint",
"lint-fix": "lerna run --no-bail lint-fix",
"test": "lerna run test",
"test": "lerna run --ignore @endo/skel test",
"test262": "lerna run test262",
"postinstall": "patch-package",
"patch-package": "patch-package",
Expand Down
4 changes: 2 additions & 2 deletions packages/skel/test/test-index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from './prepare-test-env-ava.js';

test('place holder', async t => {
t.pass();
test('placeholder', async t => {
t.fail('TODO: add tests');
});

0 comments on commit 54af775

Please sign in to comment.