Skip to content

Commit

Permalink
Merge pull request #269 from Syncano/chore/update_docs
Browse files Browse the repository at this point in the history
Updating docs
  • Loading branch information
mkucharz committed Oct 11, 2018
2 parents 6aca580 + 41932bf commit ee70f09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/tests/e2e/cli/instance.test-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ describe('CLI Instance', function () {
const testInstance = uniqueInstance()

testNixt()
.before(() => createInstance(testInstance))
.after(() => deleteInstance(testInstance))
.before(async () => await createInstance(testInstance))
.after(async () => await deleteInstance(testInstance))
.run(`${cliLocation} instance create ${testInstance}`)
.stdout(/Instance already exist!/)
.code(1)
Expand All @@ -28,7 +28,7 @@ describe('CLI Instance', function () {
const testInstance = uniqueInstance()

testNixt()
.after(() => deleteInstance(testInstance))
.after(async () => await deleteInstance(testInstance))
.run(`${cliLocation} instance create ${testInstance}`)
.stdout(/has been created/)
.code(0)
Expand Down

0 comments on commit ee70f09

Please sign in to comment.