Closed ptomato closed 4 years ago
This situation will not be handled correctly:
jasmine.json
{ "spec_files": [ "path1", "path2" ] }
path1/test.js
describe('A suite', function () {});
path2/test.js
describe('Another suite', function () {});
In this case, only "A suite" gets run and not "Another suite" because path1 and path2 are both added to imports.searchPath. When Jasmine goes to import test twice, then path1/test.js fulfills the requirement both times.
path1
path2
imports.searchPath
test
This situation will not be handled correctly:
jasmine.json
path1/test.js
path2/test.js
In this case, only "A suite" gets run and not "Another suite" because
path1
andpath2
are both added toimports.searchPath
. When Jasmine goes to importtest
twice, thenpath1/test.js
fulfills the requirement both times.