Skip to content

Commit 5151127

Browse files
committed
test(gen:pre): remove bower pre-tests
1 parent 0f73fac commit 5151127

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

src/test/pre.test.js

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ describe('test fixtures', function() {
77
assert.file([path.join(__dirname, 'fixtures/package.json')]);
88
});
99

10-
it('should have .bowerrc & bower.json in fixtures', function() {
11-
assert.file([path.join(__dirname, 'fixtures/bower.json'), path.join(__dirname, 'fixtures/.bowerrc')]);
12-
});
13-
1410
it('should have .yo-rc.json in fixtures', function() {
1511
assert.file([path.join(__dirname, 'fixtures/.yo-rc.json')]);
1612
});
@@ -24,14 +20,4 @@ describe('test fixtures', function() {
2420
});
2521
assert.file(deps);
2622
});
27-
28-
it('should have all bower packages in fixtures/bower_components', function() {
29-
var bowerJson = require('./fixtures/bower.json');
30-
var deps = Object.keys(bowerJson.dependencies);
31-
deps = deps.concat(Object.keys(bowerJson.devDependencies));
32-
deps = deps.map(function(dep) {
33-
return path.join(__dirname, 'fixtures', 'bower_components', dep);
34-
});
35-
assert.file(deps);
36-
});
37-
});
23+
});

0 commit comments

Comments
 (0)