From f05f36f6ed827834ef2d7bd6546e5f74b3dbe7f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Quixada=CC=81?= Date: Sat, 6 May 2023 15:38:44 -0400 Subject: [PATCH] fix: changed source command to dot --- test/fetch-api/browser/run.sh | 2 +- test/fetch-api/node-fetch/run.sh | 2 +- test/fetch-api/node/run.sh | 2 +- test/fetch-api/whatwg/run.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/fetch-api/browser/run.sh b/test/fetch-api/browser/run.sh index b3b825a..5328e1b 100755 --- a/test/fetch-api/browser/run.sh +++ b/test/fetch-api/browser/run.sh @@ -1,5 +1,5 @@ #!/bin/sh -source test/setup/server.sh +. test/setup/server.sh npx mocha-headless-chrome -f http://127.0.0.1:8000/$(dirname $0)/index.html?globals=on diff --git a/test/fetch-api/node-fetch/run.sh b/test/fetch-api/node-fetch/run.sh index 75500b0..ef40489 100755 --- a/test/fetch-api/node-fetch/run.sh +++ b/test/fetch-api/node-fetch/run.sh @@ -1,5 +1,5 @@ #!/bin/sh -source test/setup/server.sh +. test/setup/server.sh npx nyc mocha $(dirname $0)/index.js diff --git a/test/fetch-api/node/run.sh b/test/fetch-api/node/run.sh index 75500b0..ef40489 100755 --- a/test/fetch-api/node/run.sh +++ b/test/fetch-api/node/run.sh @@ -1,5 +1,5 @@ #!/bin/sh -source test/setup/server.sh +. test/setup/server.sh npx nyc mocha $(dirname $0)/index.js diff --git a/test/fetch-api/whatwg/run.sh b/test/fetch-api/whatwg/run.sh index f6bcbf8..cc60f2d 100755 --- a/test/fetch-api/whatwg/run.sh +++ b/test/fetch-api/whatwg/run.sh @@ -1,5 +1,5 @@ #!/bin/sh -source test/setup/server.sh +. test/setup/server.sh npx mocha-headless-chrome -f http://127.0.0.1:8000/$(dirname $0)/index.html?globals=off