Skip to content

Commit

Permalink
fix: changed source command to dot
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed May 6, 2023
1 parent 6abf91b commit f05f36f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/fetch-api/browser/run.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion test/fetch-api/node-fetch/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

source test/setup/server.sh
. test/setup/server.sh

npx nyc mocha $(dirname $0)/index.js
2 changes: 1 addition & 1 deletion test/fetch-api/node/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

source test/setup/server.sh
. test/setup/server.sh

npx nyc mocha $(dirname $0)/index.js
2 changes: 1 addition & 1 deletion test/fetch-api/whatwg/run.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f05f36f

Please sign in to comment.