Files
jasmine/spec/support/jasmine.json
Steve Gravrock fffb8abb24 Moved property tests to the main suite
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.
2020-01-11 10:49:37 -08:00

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
}