Skip to content

Commit

Permalink
Didn't read the documentation...
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed May 28, 2016
1 parent ca13406 commit d247912
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions test/gulp.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('creates package.json', () => {
});

test('package.json contains correct packages', () => {
assert.JSONFileContent('package.json', { // eslint-disable-line
assert.jsonFileContent('package.json', {
devDependencies: {
'autoprefixer': '^6.2.3',
'browser-sync': '^2.11.0',
Expand Down Expand Up @@ -58,7 +58,7 @@ test('does not create credentials files', () => {
});

test('does not contain uploading packages', () => {
assert.noJSONFileContent('package.json', {
assert.noJsonFileContent('package.json', {
devDependencies: {
'gulp-awspublish': '',
'concurrent-transform': '',
Expand Down
4 changes: 2 additions & 2 deletions test/uploading/aws.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('creates package.json file', () => {
});

test('contain correct uploading packages', () => {
assert.JSONFileContent('package.json', { // eslint-disable-line
assert.jsonFileContent('package.json', {
devDependencies: {
'gulp-awspublish': '^3.2.0',
'concurrent-transform': '^1.0.0'
Expand All @@ -28,7 +28,7 @@ test('contain correct uploading packages', () => {
});

test('does not contain wrong uploading packages', () => {
assert.noJSONFileContent('package.json', {
assert.noJsonFileContent('package.json', {
devDependencies: {
'gulp-rsync': '',
'gulp-gh-pages': ''
Expand Down
4 changes: 2 additions & 2 deletions test/uploading/ghpages.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ test('creates package.json file', () => {
});

test('contain correct uploading packages', () => {
assert.JSONFileContent('package.json', { // eslint-disable-line
assert.jsonFileContent('package.json', {
devDependencies: {
'gulp-gh-pages': '^0.5.2'
}
});
});

test('does not contain wrong uploading packages', () => {
assert.noJSONFileContent('package.json', {
assert.noJsonFileContent('package.json', {
devDependencies: {
'gulp-awspublish': '',
'concurrent-transform': '',
Expand Down
2 changes: 1 addition & 1 deletion test/uploading/no-uploading.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ test('does not create credentials files', () => {
});

test('does not contain uploading packages', () => {
assert.noJSONFileContent('package.json', {
assert.noJsonFileContent('package.json', {
devDependencies: {
'gulp-awspublish': '',
'concurrent-transform': '',
Expand Down
4 changes: 2 additions & 2 deletions test/uploading/rsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ test('creates package.json file', () => {
});

test('contain correct uploading packages', () => {
assert.JSONFileContent('package.json', { // eslint-disable-line
assert.jsonFileContent('package.json', {
devDependencies: {
'gulp-rsync': '^0.0.6'
}
});
});

test('does not contain wrong uploading packages', () => {
assert.noJSONFileContent('package.json', {
assert.noJsonFileContent('package.json', {
devDependencies: {
'gulp-awspublish': '',
'concurrent-transform': '',
Expand Down

0 comments on commit d247912

Please sign in to comment.