Skip to content

Commit

Permalink
Ignore tests that are broken with 8.0 #259
Browse files Browse the repository at this point in the history
The functionality behind these tests should be fine, but
the tests themselves are not.
  • Loading branch information
deepy committed Dec 26, 2022
1 parent 02b9e73 commit 22c2983
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package com.github.gradle.node.npm.task
import com.github.gradle.AbstractIntegTest
import com.github.gradle.node.NodeExtension
import org.gradle.testkit.runner.TaskOutcome
import org.gradle.util.GradleVersion
import spock.lang.IgnoreIf

import static com.github.gradle.node.NodeExtension.DEFAULT_NODE_VERSION

Expand Down Expand Up @@ -152,6 +154,8 @@ class NpmInstall_integTest extends AbstractIntegTest {
gv << GRADLE_VERSIONS_UNDER_TEST
}
// FIXME: https://github.com/node-gradle/gradle-node-plugin/issues/259
@IgnoreIf({ gv >= GradleVersion.version("8.0-milestone-1") })
def 'verify npm install inputs/outputs (#gv.version)'() {
given:
gradleVersion = gv
Expand Down Expand Up @@ -192,6 +196,8 @@ class NpmInstall_integTest extends AbstractIntegTest {
gv << GRADLE_VERSIONS_UNDER_TEST
}
// FIXME: https://github.com/node-gradle/gradle-node-plugin/issues/259
@IgnoreIf({ gv >= GradleVersion.version("8.0-milestone-1") })
def 'verify npm ci inputs/outputs (#gv.version)'() {
given:
gradleVersion = gv
Expand Down

0 comments on commit 22c2983

Please sign in to comment.