Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
Simplify some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Dec 30, 2015
1 parent f4cb5f7 commit 67da47d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 24 deletions.
6 changes: 0 additions & 6 deletions test/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ describe('angular:controller', function () {
helpers
.run(require.resolve('../controller'))
.withArguments('foo')
.inTmpDir(function (dir) {
fs.writeFileSync(
path.join(dir, 'bower.json'),
'{"appPath": "app"}'
);
})
.on('end', done);
});

Expand Down
6 changes: 0 additions & 6 deletions test/directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ describe('angular:directive', function () {
helpers
.run(require.resolve('../directive'))
.withArguments('foo')
.inTmpDir(function (dir) {
fs.writeFileSync(
path.join(dir, 'bower.json'),
'{"appPath": "app"}'
);
})
.on('end', done);
});

Expand Down
6 changes: 0 additions & 6 deletions test/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ describe('angular:filter', function () {
helpers
.run(require.resolve('../filter'))
.withArguments('foo')
.inTmpDir(function (dir) {
fs.writeFileSync(
path.join(dir, 'bower.json'),
'{"appPath": "app"}'
);
})
.on('end', done);
});

Expand Down
6 changes: 0 additions & 6 deletions test/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ describe('angular:service', function () {
helpers
.run(require.resolve('../service'))
.withArguments('foo')
.inTmpDir(function (dir) {
fs.writeFileSync(
path.join(dir, 'bower.json'),
'{"appPath": "app"}'
);
})
.on('end', done);
});

Expand Down

0 comments on commit 67da47d

Please sign in to comment.