Skip to content

Commit

Permalink
v0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
anuveyatsu committed Mar 27, 2018
1 parent 44a3450 commit c75a173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-cli",
"version": "0.8.8",
"version": "0.8.9",
"description": "CLI for working with data packages",
"main": "./lib/index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion test/push/push.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ test('push command fails with descriptor validation error', async t => {
let path_ = 'test/fixtures/test-data/packages/invalid-descriptor'
let result = await runcli('push', path_)
let stdout = result.stdout.split('\n')
const hasErrorMsg = stdout.find(item => item.includes('> Error! Error: Descriptor validation error:'))
const hasErrorMsg = stdout.find(item => item.includes('Descriptor validation error:'))
t.truthy(hasErrorMsg)
let hasErrorDetails = stdout.find(item => item.includes('String does not match pattern: ^([-a-z0-9._/])+$'))
t.truthy(hasErrorDetails)
Expand Down

0 comments on commit c75a173

Please sign in to comment.