Skip to content

Commit

Permalink
Use test from issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deepy committed Sep 27, 2024
1 parent bd65d10 commit 45710b2
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,19 @@ class NpmInstall_integTest extends AbstractIntegTest {
then:
result.task(':deleteNodeModules').outcome == TaskOutcome.SUCCESS
when:
result = build('npmInstall')
then:
result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
when:
// when the node_modules is removed
result = build('deleteNodeModules')
then:
result.task(':deleteNodeModules').outcome == TaskOutcome.SUCCESS
when:
result = build('taskWithDependency')
Expand Down

0 comments on commit 45710b2

Please sign in to comment.