Skip to content

Commit

Permalink
Issue #99: fix a broken test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsautel committed May 6, 2020
1 parent d7270df commit e957b0b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ class Npm_integTest extends AbstractIntegTest {
then:
// Not up-to-date because the package-lock.json now exists
result2.task(":npmInstall").outcome == TaskOutcome.SUCCESS
// Not up-to-date because npm install ran again and updated node_modules
result2.task(":buildNpx").outcome == TaskOutcome.SUCCESS
result2.task(":buildNpm").outcome == TaskOutcome.SUCCESS
result2.task(":buildNpx").outcome == TaskOutcome.UP_TO_DATE
result2.task(":buildNpm").outcome == TaskOutcome.UP_TO_DATE

when:
def result3 = build("build")
Expand Down

0 comments on commit e957b0b

Please sign in to comment.