Skip to content

Commit 0e883f7

Browse files
committed
test: skip docker tests
1 parent 2bdc17a commit 0e883f7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/integration/docker/go/go1.x/dockerGo1.x.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "../../../../_testHelpers/index.js"
1010
import { BASE_URL } from "../../../../config.js"
1111

12-
describe("Go 1.x with Docker tests", function desc() {
12+
describe.skip("Go 1.x with Docker tests", function desc() {
1313
beforeEach(async () => {
1414
await setup({
1515
servicePath: join(import.meta.url),

tests/integration/docker/layers/dockerLayers.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join } from "desm"
44
import { setup, teardown } from "../../../_testHelpers/index.js"
55
import { BASE_URL } from "../../../config.js"
66

7-
describe("Layers with Docker tests", function desc() {
7+
describe.skip("Layers with Docker tests", function desc() {
88
beforeEach(() =>
99
setup({
1010
servicePath: join(import.meta.url),

tests/integration/docker/provided/dockerProvided.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join } from "desm"
44
import { setup, teardown } from "../../../_testHelpers/index.js"
55
import { BASE_URL } from "../../../config.js"
66

7-
describe("Provided with Docker tests", function desc() {
7+
describe.skip("Provided with Docker tests", function desc() {
88
beforeEach(() =>
99
setup({
1010
servicePath: join(import.meta.url),

tests/integration/docker/python/python3.7/dockerPython3.7.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join } from "desm"
44
import { setup, teardown } from "../../../../_testHelpers/index.js"
55
import { BASE_URL } from "../../../../config.js"
66

7-
describe("Python 3.7 with Docker tests", function desc() {
7+
describe.skip("Python 3.7 with Docker tests", function desc() {
88
beforeEach(() =>
99
setup({
1010
servicePath: join(import.meta.url),

tests/integration/docker/python/python3.8/dockerPython3.8.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe("Python 3.8 with Docker tests", function desc() {
2323
path: "/dev/hello",
2424
},
2525
].forEach(({ description, expected, path }) => {
26-
it(description, async function it() {
26+
it.skip(description, async function it() {
2727
// "Could not find 'Docker', skipping tests."
2828
if (!env.DOCKER_DETECTED) {
2929
this.skip()

tests/integration/docker/ruby/ruby2.7/dockerRuby2.7.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe("Ruby 2.7 with Docker tests", function desc() {
2323
path: "/dev/hello",
2424
},
2525
].forEach(({ description, expected, path }) => {
26-
it(description, async function it() {
26+
it.skip(description, async function it() {
2727
// "Could not find 'Docker', skipping tests."
2828
if (!env.DOCKER_DETECTED) {
2929
this.skip()

0 commit comments

Comments
 (0)