We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a5606 commit 5e9d303Copy full SHA for 5e9d303
spec/jasmine_spec.js
@@ -87,7 +87,8 @@ describe('Jasmine', function() {
87
88
function hasCommonFileGlobBehavior(method, destProp) {
89
it('adds a file with an absolute path', function() {
90
- const aFile = path.join(this.testJasmine.projectBaseDir, this.testJasmine.specDir, 'spec/command_spec.js');
+ const aFile = path.join(this.testJasmine.projectBaseDir, this.testJasmine.specDir, 'spec/command_spec.js')
91
+ .replace(/\\/g, '/');
92
expect(this.testJasmine[destProp]).toEqual([]);
93
this.testJasmine[method]([aFile]);
94
expect(this.testJasmine[destProp]).toEqual([slash(aFile)]);
0 commit comments