Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
install dependencies before running lint integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
notlee authored and JakeChampion committed Dec 3, 2020
1 parent 513c91f commit 248556f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/integration/verify/verify.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,13 @@ describe('obt verify', function () {
});

it('should error for customised rules', function () {
let obt;
return obtBinPath()
.then(obt => {
.then(obtPath => {
obt = obtPath;
return execa(obt, ['install']);
})
.then(() => {
return execa(obt, ['verify']);
})
.then(() => {
Expand Down

0 comments on commit 248556f

Please sign in to comment.