@teamkeel/testing-runtime 0.251.0 → 0.251.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.mjs +3 -1
- package/vitest.config.mjs +1 -8
package/package.json
CHANGED
package/src/index.mjs
CHANGED
package/vitest.config.mjs
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
|
-
// This config file is used for both running tests in this package
|
|
2
|
-
// and also as the config file for Vitest when running `keel test`.
|
|
3
|
-
|
|
4
1
|
import { defineConfig } from "vitest/config";
|
|
5
2
|
|
|
6
3
|
export default defineConfig({
|
|
7
4
|
test: {
|
|
8
|
-
|
|
9
|
-
// import as when using with `keel test` a relative
|
|
10
|
-
// import is relative to the current working directory,
|
|
11
|
-
// not this file.
|
|
12
|
-
setupFiles: [__dirname + "/src/vitest-setup"],
|
|
5
|
+
setupFiles: ["./src/vitest-setup"],
|
|
13
6
|
},
|
|
14
7
|
});
|