We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f554a commit 6dfc674Copy full SHA for 6dfc674
scripts/run-packages-spec.js
@@ -2,6 +2,7 @@
2
'use strict';
3
4
require('../lib/bootstrap-local');
5
+const glob = require('glob');
6
7
const path = require('path');
8
const Jasmine = require('jasmine');
@@ -15,4 +16,9 @@ jasmine.loadConfig({});
15
16
jasmine.addReporter(new JasmineSpecReporter());
17
18
// Run the tests.
-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