Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
test: Adjusting test suites imports to be compiled by TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zakharchenko committed Sep 20, 2019
1 parent afbb500 commit 8d15e7a
Show file tree
Hide file tree
Showing 102 changed files with 10,605 additions and 8,535 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ npm-shrinkwrap.json
/coverage
/docs/_build
build
typings
node_modules
.idea
.vscode
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"semi": false,
"semi": true,
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "none"
Expand Down
10 changes: 5 additions & 5 deletions bin/dredd
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
}
});

const CLI = require('../lib/CLI');
const CLI = require('../build/CLI').default;

const dreddCli = new CLI({
const dreddCLI = new CLI({
custom: {
cwd: process.cwd(),
argv: process.argv.slice(2),
},
argv: process.argv.slice(2)
}
});

dreddCli.run();
dreddCLI.run();
Loading

0 comments on commit 8d15e7a

Please sign in to comment.