Skip to content

Commit f12f24d

Browse files
committed
fix typo on integration test filename.
1 parent 5bba2bb commit f12f24d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/tasks/build.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('The Angularity build task should correctly build an existing project.'
1717
});
1818

1919
afterEach(function () {
20-
helper.cleanTestTemp();
20+
//helper.cleanTestTemp();
2121
});
2222

2323
beforeEach(function () {
@@ -29,15 +29,15 @@ describe('The Angularity build task should correctly build an existing project.'
2929
process.chdir(buildFolder);
3030
});
3131

32-
it('should successfully build the minimal-es5 project\'s js.', function (done) {
32+
iit('should successfully build the minimal-es5 project\'s js.', function (done) {
3333
helper.runAngularity('build')
3434
.then(function (result) {
3535
var expectedJSBundle = path.join(expectedBuildFolder, 'app-build', 'index.js');
3636
var builtJSBundle = path.join(buildFolder, 'app-build', 'index.js');
3737
expect(builtJSBundle).diffFilePatch(expectedJSBundle);
3838

39-
var expectedJSBundleSourceMap = path.join(expectedBuildFolder, 'app-build', 'index.js');
40-
var builtJSBundleSourceMap = path.join(buildFolder, 'app-build', 'index.js');
39+
var expectedJSBundleSourceMap = path.join(expectedBuildFolder, 'app-build', 'index.js.map');
40+
var builtJSBundleSourceMap = path.join(buildFolder, 'app-build', 'index.js.map');
4141
expect(builtJSBundleSourceMap).diffFilePatch(expectedJSBundleSourceMap);
4242

4343
done();

test/tasks/release.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ describe('The Angularity release task should correctly build a release version.'
3737
var builtJSBundle = path.join(buildFolder, 'app-release', 'index.js');
3838
expect(builtJSBundle).diffFilePatch(expectedJSBundle);
3939

40-
var expectedJSBundleSourceMap = path.join(expectedBuildFolder, 'app-release', 'index.js');
41-
var builtJSBundleSourceMap = path.join(buildFolder, 'app-release', 'index.js');
40+
var expectedJSBundleSourceMap = path.join(expectedBuildFolder, 'app-release', 'index.js.map');
41+
var builtJSBundleSourceMap = path.join(buildFolder, 'app-release', 'index.js.map');
4242
expect(builtJSBundleSourceMap).diffFilePatch(expectedJSBundleSourceMap);
4343

4444
done();

0 commit comments

Comments
 (0)