Skip to content

Commit

Permalink
switch to no environment variables for ava tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriz committed Aug 19, 2024
1 parent 56441eb commit 7d52114
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"postversion": "npm publish",
"postpublish": "npm run syn && git push --follow-tags",
"release": "git checkout master && npm run syn && npx standard-version && npm publish",
"tape": "npx nyc tape test/*test.js",
"tapew": "npx onchange -i '**/*.js' -- npm run tape",
"tape": "TEST=tape npx nyc tape test/*test.js",
"tapew": "TEST=tape npx onchange -i '**/*.js' -- npm run tape",
"tap": "npx tap test/*test.js",
"tapw": "npm run tap -- -w",
"ava": "TEST=ava npx nyc ava test/*test.js",
"avaw": "TEST=ava npx ava test/*test.js -w",
"ava-c8": "TEST=ava npx c8 ava test/*test.js",
"ava": "npx nyc ava test/*test.js",
"avaw": "npx ava test/*test.js -w",
"ava-c8": "npx c8 ava test/*test.js",
"cov-tap": "npx tap test/*test.js --coverage-report=lcov",
"cov-ava": "TEST=ava npx c8 ava test/*test.js --coverage-report=lcov",
"cov-ava": "npx c8 ava test/*test.js --coverage-report=lcov",
"rebcont": "git add . && git rebase --continue",
"toc": "npx markdown-toc DOCUMENTATION.md > toc",
"doc": "npx documentation build 'index.js' -f html -o auto-docs --github",
Expand Down
2 changes: 1 addition & 1 deletion test/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const test = process.env.TEST || 'tape'
const test = process.env.TEST || 'ava'

const getTestPatch = ({
'tape': _ => require('./helpers/tape-patched'),
Expand Down

0 comments on commit 7d52114

Please sign in to comment.