chore: Add tests for calculateDeltaAndAngle

This commit is contained in:
Sidharth Vinod
2023-11-24 10:25:50 +05:30
parent 78e118c876
commit 55ce05fc75
5 changed files with 55 additions and 6 deletions

View File

@@ -24,6 +24,7 @@ export default defineConfig({
reportsDirectory: './coverage/vitest',
exclude: ['**/node_modules/**', '**/tests/**', '**/__mocks__/**'],
},
includeSource: ['packages/*/src/**/*.{js,ts}'],
},
build: {
/** If you set esmExternals to true, this plugins assumes that
@@ -33,4 +34,7 @@ export default defineConfig({
esmExternals: true,
},
},
define: {
'import.meta.vitest': 'undefined',
},
});