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

Commit

Permalink
chore(rebase): rebase on master
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebachelier committed Feb 24, 2015
1 parent bad5a0d commit e9758e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/test-config-writer.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('ConfigWriter', function () {
it('should detect missing sources when warnMissing=true', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});

Expand Down Expand Up @@ -125,7 +125,7 @@ describe('ConfigWriter', function () {
it('should search all root paths', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});

Expand Down Expand Up @@ -160,7 +160,7 @@ describe('ConfigWriter', function () {
it('should be invoked for each block', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});
var blocks = helpers.blocks();
Expand Down Expand Up @@ -189,7 +189,7 @@ describe('ConfigWriter', function () {
it('should override normal search when it returns a string', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});

Expand Down Expand Up @@ -221,7 +221,7 @@ describe('ConfigWriter', function () {
it('should be prevented from returning non-existent paths', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});

Expand Down Expand Up @@ -259,7 +259,7 @@ describe('ConfigWriter', function () {
it('should cancel normal search when it returns `false`, and invoke normal search when it returns `null`', function () {
var flow = new Flow({
steps: {
js: ['concat', 'uglifyjs']
js: ['concat', 'uglify']
}
});

Expand Down

0 comments on commit e9758e9

Please sign in to comment.