Skip to content

Commit bc3b950

Browse files
author
hirsch88
committed
Refactor nps
1 parent 09fbca0 commit bc3b950

File tree

1 file changed

+1
-23
lines changed

1 file changed

+1
-23
lines changed

package-scripts.js

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -239,28 +239,6 @@ module.exports = {
239239
hiddenFromHelp: true
240240
}
241241
},
242-
// integration: {
243-
// default: series(
244-
// 'nps banner.testIntegration',
245-
// 'nps test.integration.pretest',
246-
// 'nps test.integration.run'
247-
// ),
248-
// pretest: tslint(`./test/integration/**.ts`),
249-
// verbose: 'nps "test.integration --verbose"',
250-
// // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
251-
// run: 'cross-env NODE_ENV=test jest --testPathPattern=integration -i',
252-
// },
253-
// e2e: {
254-
// default: series(
255-
// 'nps banner.testE2E',
256-
// 'nps test.e2e.pretest',
257-
// 'nps test.e2e.run'
258-
// ),
259-
// pretest: tslint(`./test/e2e/**.ts`),
260-
// verbose: 'nps "test.e2e --verbose"',
261-
// // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
262-
// run: 'cross-env NODE_ENV=test jest --testPathPattern=e2e -i',
263-
// }
264242
},
265243
/**
266244
* This creates pretty banner to the terminal
@@ -301,5 +279,5 @@ function runFast(path) {
301279
}
302280

303281
function tslint(path) {
304-
return `tslint -c './tslint.json' '${path}' --format stylish`;
282+
return `tslint -c ./tslint.json ${path} --format stylish`;
305283
}

0 commit comments

Comments
 (0)