We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd65d10 commit 45710b2Copy full SHA for 45710b2
src/test/groovy/com/github/gradle/node/npm/task/NpmInstall_integTest.groovy
@@ -148,6 +148,19 @@ class NpmInstall_integTest extends AbstractIntegTest {
148
then:
149
result.task(':deleteNodeModules').outcome == TaskOutcome.SUCCESS
150
151
+ when:
152
+ result = build('npmInstall')
153
+
154
+ then:
155
+ result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
156
157
158
+ // when the node_modules is removed
159
+ result = build('deleteNodeModules')
160
161
162
+ result.task(':deleteNodeModules').outcome == TaskOutcome.SUCCESS
163
164
when:
165
result = build('taskWithDependency')
166
0 commit comments