-
Notifications
You must be signed in to change notification settings - Fork 457
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test!: rewrite test using TypeScript & node-tap
- Loading branch information
Showing
20 changed files
with
2,328 additions
and
2,925 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
{ | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
"packages/*", | ||
"test" | ||
], | ||
"scripts": { | ||
"test": "NODE_ENV=test nyc --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 ava", | ||
"prepublish": "lerna run prepublish", | ||
"publish-canary": "lerna version prerelease --preid canary --force-publish && release --pre", | ||
"publish-stable": "lerna version --force-publish" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"ava": "0.23.0", | ||
"lerna": "^3.4.0", | ||
"node-fetch": "2.6.0", | ||
"nyc": "11.3.0", | ||
"resumer": "0.0.0", | ||
"rewire": "3.0.2", | ||
"sinon": "4.4.3", | ||
"test-listen": "1.0.2", | ||
"then-sleep": "1.0.1" | ||
"lerna": "^3.4.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
require.resolve('@vercel/style-guide/eslint/node'), | ||
require.resolve('@vercel/style-guide/eslint/typescript'), | ||
], | ||
parserOptions: { | ||
tsconfigRootDir: __dirname, | ||
project: ['./tsconfig.json'], | ||
}, | ||
ignorePatterns: ['dist/**'], // TODO: | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.