Skip to content

Commit c75a173

Browse files
committed
v0.8.9
1 parent 44a3450 commit c75a173

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-cli",
3-
"version": "0.8.8",
3+
"version": "0.8.9",
44
"description": "CLI for working with data packages",
55
"main": "./lib/index.js",
66
"bin": {

test/push/push.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ test('push command fails with descriptor validation error', async t => {
145145
let path_ = 'test/fixtures/test-data/packages/invalid-descriptor'
146146
let result = await runcli('push', path_)
147147
let stdout = result.stdout.split('\n')
148-
const hasErrorMsg = stdout.find(item => item.includes('> Error! Error: Descriptor validation error:'))
148+
const hasErrorMsg = stdout.find(item => item.includes('Descriptor validation error:'))
149149
t.truthy(hasErrorMsg)
150150
let hasErrorDetails = stdout.find(item => item.includes('String does not match pattern: ^([-a-z0-9._/])+$'))
151151
t.truthy(hasErrorDetails)

0 commit comments

Comments
 (0)