diff --git a/jsconfig.json b/jsconfig.json index 349248d..e4413a1 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -13,11 +13,15 @@ "alwaysStrict": true, }, "include": [ + "./**/*.test.js", "./src/**/*.js", "./api/**/*.js", "./packages/*/src/**/*.js", "./commitlint.config.cjs", "./eslint.config.js" ], - "exclude": ["./node_modules/**", ".dist"] + "exclude": [ + "./node_modules/**", + ".dist" + ] } diff --git a/package.json b/package.json index 453cecd..8c182e0 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "private": true, "main": "index.js", "scripts": { + "test": "vitest", "prepare": "husky install", "lint": "eslint .", "lint:fix": "eslint . --fix", diff --git a/test/placeholder.test.js b/test/placeholder.test.js new file mode 100644 index 0000000..5a723d6 --- /dev/null +++ b/test/placeholder.test.js @@ -0,0 +1,6 @@ +import { expect, test } from 'vitest'; + +test('placeholder', () => { + expect(1).toBe(1); +}); +