Closed OR13 closed 4 years ago
Expected:
npm run test ./path/to/my.test.ts
only that test is run.
this is caused by:
"test": "npm run build && nyc jasmine --config=./tests/jasmine.json",
How is a single test focused in this project?
Ahh I see, https://stackoverflow.com/questions/8527786/how-do-i-focus-on-one-spec-in-jasmine-js
TL;DR you must edit the file from it -> fit or describe -> fdescribe.
it
fit
describe
fdescribe
Expected:
only that test is run.
this is caused by:
How is a single test focused in this project?