7565-testToMaster #2567

Merged
alexm merged 250 commits from 7565-testToMaster into master 2024-06-11 06:31:18 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit 8a54f7c5c7 - Show all commits

View File

@ -37,8 +37,11 @@ async function test() {
const jasmine = new Jasmine(); const jasmine = new Jasmine();
const e2ePath = './e2e/paths'; const e2ePath = './e2e/paths';
const specFiles = fs.readdirSync(e2ePath).sort().map(folder => `${e2ePath}/${folder}/*[sS]pec.js`); const file = '*[sS]pec.js';
specFiles.push(`${e2ePath}/**/*[sS]pec.js`); const specFiles = fs.readdirSync(e2ePath)
.sort()
.map(folder => `${e2ePath}/${folder}/${file}`)
.concat(`${e2ePath}/**/${file}`);
jasmine.loadConfig({ jasmine.loadConfig({
spec_dir: '.', spec_dir: '.',