Imports all the tests of the given Iterable of urls and yields TestTuple.
TestTuple
testsImport([ "file:///example/test-1.test.js", "file:///example/test-2.test.js",]);// AsyncIterable<// [// [// "file:///example/test-1.test.js",// {// given: "example",// must: "example",// received: () => "value",// wanted: () => "value",// },// ],// [// "file:///example/test-2.test.js",// {// given: "example",// must: "example",// received: () => "value",// wanted: () => "value",// },// ],// ]// >;
TestTuple containing url and test for it.
Array of urls of tests.
Imports all the tests of the given Iterable of urls and yields
TestTuple
.Example
Yields
TestTuple
containing url and test for it.