diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-02-15 04:27:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 03:27:08 +0000 |
commit | 4cc2fc76138212883b047a17a78e4f83266c0f1c (patch) | |
tree | 6a59c44724d082de81f439d04a11c867831877c4 /vitest.config.js | |
parent | 6bf7b0055765c4f2011c9614753d6714dc09be65 (diff) |
separate json test out of test-code (#674)
* separate json testing
* add to ci
Diffstat (limited to 'vitest.config.js')
-rw-r--r-- | vitest.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vitest.config.js b/vitest.config.js index 7603e92c..0bb56a97 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -24,7 +24,8 @@ export default defineConfig({ exclude: [ ...configDefaults.exclude, 'dev/lib/**', - 'test/playwright/**' + 'test/playwright/**', + 'test/json.test.js' ], poolOptions: { threads: { |