-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
convert test files to typescript #276
base: master
Are you sure you want to change the base?
convert test files to typescript #276
Conversation
09d52a7
to
e4d80e8
Compare
be5b41b
to
4d20ec7
Compare
@@ -32,7 +32,7 @@ | |||
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ | |||
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ | |||
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ | |||
"types": ["cypress", "mocha", "node", "./index.d.ts", "./index.internal.d.ts"], /* Specify type package names to be included without being referenced in a source file. */ | |||
"types": ["cypress", "node", "./index.d.ts", "./index.internal.d.ts"], /* Specify type package names to be included without being referenced in a source file. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cypress provides the mocha
types in src
, so mocha
isn't needed
c74a4ac
to
a5594bc
Compare
@@ -45,18 +45,14 @@ | |||
"dependencies": { | |||
"chalk": "^4.0.0", | |||
"compare-versions": "^6.1.1", | |||
"fs-extra": "^10.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed packages here are needed in test/package.json
but not needed in parent package.json
.
@@ -0,0 +1 @@ | |||
test/output*/** linguist-vendored |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
953d003
to
78fa4a5
Compare
No description provided.