Skip to content

Commit d3f4bb4

Browse files
committed
fix: fixup
1 parent f4d74ac commit d3f4bb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/content/package-json.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"template-oss-apply": "template-oss-apply --force",
2020
{{#if isNodeTest}}
2121
"snap": "node --test --test-update-snapshots",
22-
"test": "node --test --test-timeout=3000",
22+
"test": "node --test",
2323
"test:cover": "node --test --experimental-test-coverage --test-timeout=3000 --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100",
2424
{{else}}
2525
"snap": "{{#if typescript}}{{#if tap16}}c8 {{/if}}{{/if}}tap",

test/apply/node-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ t.test('node:test runner', async t => {
1515
const pkg = await s.readJson('package.json')
1616

1717
// Verify test scripts are for node:test
18-
t.equal(pkg.scripts.test, 'node --test --test-timeout=3000')
18+
t.equal(pkg.scripts.test, 'node --test')
1919
t.equal(
2020
pkg.scripts['test:cover'],
2121
'node --test --experimental-test-coverage --test-timeout=3000 --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100',

0 commit comments

Comments
 (0)