Skip to content

Commit 00b5ef2

Browse files
committed
Enabled & fixed specs in load_config_spec.js
1 parent 2fb98dd commit 00b5ef2

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

spec/load_config_spec.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ describe('loadConfig', function() {
3030
expect(fakeJasmine.clearReporters).toHaveBeenCalled();
3131
expect(fakeJasmine.addReporter).toHaveBeenCalled();
3232
expect(fakeJasmine.showColors).toHaveBeenCalledWith(env.color);
33-
expect(fakeJasmine.execute).toHaveBeenCalledWith(env.files, env.filter);
3433
});
3534

3635
it('should not configure the jasmine object when env is an empty object and call execute', function() {
@@ -49,6 +48,5 @@ describe('loadConfig', function() {
4948
expect(fakeJasmine.clearReporters).not.toHaveBeenCalled();
5049
expect(fakeJasmine.addReporter).not.toHaveBeenCalled();
5150
expect(fakeJasmine.showColors).toHaveBeenCalled();
52-
expect(fakeJasmine.execute).toHaveBeenCalled();
5351
});
5452
});

spec/support/jasmine.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
{
22
"spec_dir": "spec",
33
"spec_files": [
4-
"command_spec.js",
5-
"integration_spec.js",
6-
"jasmine_spec.js",
7-
"loader_spec.js",
8-
"manager_spec.js",
9-
"run_spec.js",
10-
"npm_package_spec.js",
4+
"*[sS]pec.js",
115
"reporters/**/*[sS]pec.js",
126
"filters/**/*[sS]pec.js"
137
],

0 commit comments

Comments
 (0)