Skip to content

Commit 48cec6d

Browse files
committed
chore: fix global file?
1 parent e18ce64 commit 48cec6d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.evergreen/setup-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OS_ARCH="$(uname "-m")"
55

66
export BASEDIR="$PWD/.evergreen"
77
export PATH="$BASEDIR/node-v$NODE_JS_VERSION-win-x64:/opt/java/jdk17/bin:$PATH"
8-
export MONGOSH_GLOBAL_CONFIG_FILE_FOR_TESTING="$BASEDIR/../../packages/testing/tests-globalconfig.conf"
8+
export MONGOSH_GLOBAL_CONFIG_FILE_FOR_TESTING="$BASEDIR/../packages/testing/tests-globalconfig.conf"
99

1010
export IS_MONGOSH_EVERGREEN_CI=1
1111
export DEBUG="mongodb*,$DEBUG"

.mocharc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"spec": ["testing/dummy.spec.ts"],
3-
"exclude": ["packages/**", "node_modules/**"],
2+
"spec": ["packages/testing/dummy.spec.ts"],
3+
"exclude": ["node_modules/**"],
44
"node-option": ["no-experimental-strip-types=true"]
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec": "../../testing/dummy.spec.ts",
2+
"spec": "../testing/dummy.spec.ts",
33
"exclude": "**/**"
44
}

packages/testing/.mocharc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"spec": "./dummy.spec.ts",
3+
"exclude": "**/**"
4+
}

0 commit comments

Comments
 (0)