Property tests can only run in Node, so they were previously in another directory that only gets run in Node. Now they're next to the related non-property tests and marked pending in the browser. This makes it more likely that a developer who normally only runs tests in the browser will notice and run them.
21 lines
478 B
JSON
21 lines
478 B
JSON
{
|
|
"spec_dir": "spec",
|
|
"spec_files": [
|
|
"core/**/*[Ss]pec.js",
|
|
"npmPackage/**/*[Ss]pec.js"
|
|
],
|
|
"helpers": [
|
|
"helpers/asyncAwait.js",
|
|
"helpers/checkForMap.js",
|
|
"helpers/checkForSet.js",
|
|
"helpers/checkForSymbol.js",
|
|
"helpers/checkForTypedArrays.js",
|
|
"helpers/domHelpers.js",
|
|
"helpers/integrationMatchers.js",
|
|
"helpers/promises.js",
|
|
"helpers/requireFastCheck.js",
|
|
"helpers/nodeDefineJasmineUnderTest.js"
|
|
],
|
|
"random": true
|
|
}
|