Skip to content

Commit a333e5c

Browse files
committed
fix integration test project filenames.
1 parent 277df85 commit a333e5c

File tree

8 files changed

+20
-29
lines changed

8 files changed

+20
-29
lines changed

test/expected/minimal-es5/app-build/index.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/expected/minimal-es5/app-build/index.js.map

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/expected/minimal-es5/app-release/index.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/expected/minimal-es5/app-release/index.js.map

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/expected/minimal-es5/app/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* globals angular */
22

3-
var appRoutes = require('../minimal/appRoutes');
4-
var appController = require('../minimal/appController');
3+
var appRoutes = require('../minimal/app-routes');
4+
var appController = require('../minimal/app-controller');
55

66
angular.module('browser-image-diff-client', ['ui.router'])
77
.controller('AppController', appController)
File renamed without changes.
File renamed without changes.

test/tasks/build.spec.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,6 @@ describe('The Angularity build task should correctly build an existing project.'
3232
it('should successfully build the minimal-es5 project\'s js.', function (done) {
3333
helper.runAngularity('build')
3434
.then(function (result) {
35-
console.log('-args-----');
36-
console.log(result.args);
37-
console.log('-stdout-----');
38-
console.log(result.stdout);
39-
console.log('-stderr-----');
40-
console.log(result.stderr);
41-
console.log('-code-----');
42-
console.log(result.code);
43-
4435
var expectedJSBundle = path.join(expectedBuildFolder, 'app-build', 'index.js');
4536
var builtJSBundle = path.join(buildFolder, 'app-build', 'index.js');
4637
expect(builtJSBundle).diffFilePatch(expectedJSBundle);

0 commit comments

Comments
 (0)