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 7f7b53a commit ccb75cbCopy full SHA for ccb75cb
integration/e2e/jasmine.ts
@@ -1,15 +1,16 @@
1
import Jasmine = require('jasmine');
2
3
export async function run(): Promise<void> {
4
- const jasmine = new Jasmine({});
+ const jasmine = new Jasmine({projectBaseDir: __dirname});
5
6
jasmine.loadConfig({
7
- spec_dir: 'dist/integration/e2e',
8
spec_files: [
9
'*_spec.js',
10
],
11
});
12
+ console.log(`Expecting to run ${jasmine.specFiles.length} specs.`);
13
+
14
if (jasmine.specFiles.length === 0) {
15
throw new Error('No specs found');
16
}
package.json
@@ -192,4 +192,4 @@
192
"type": "git",
193
"url": "https://github.com/angular/vscode-ng-language-service"
194
195
-}
+}
0 commit comments