Skip to content

Commit 6dfc674

Browse files
committed
specs
1 parent d4f554a commit 6dfc674

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/run-packages-spec.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'use strict';
33

44
require('../lib/bootstrap-local');
5+
const glob = require('glob');
56

67
const path = require('path');
78
const Jasmine = require('jasmine');
@@ -15,4 +16,9 @@ jasmine.loadConfig({});
1516
jasmine.addReporter(new JasmineSpecReporter());
1617

1718
// Run the tests.
18-
jasmine.execute(['**/*.spec.ts']);
19+
const allTests =
20+
glob.sync('packages/**/*.spec.ts')
21+
.map(p => path.relative(projectBaseDir, p))
22+
.filter(p => !/blueprints/.test(p));
23+
24+
jasmine.execute(allTests);

0 commit comments

Comments
 (0)