* Moved eslint and @nuxt/eslint to devDependencies * Added vitest to project and 1 test * Tweaked Sonar workflow in order to run tests and coverage * Removed offending config line
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import { vi } from "vitest";
|
|
|
|
Object.defineProperty(global, "import", {
|
|
value: {
|
|
meta: {
|
|
glob: vi.fn(() => ({})),
|
|
},
|
|
},
|
|
writable: true,
|
|
});
|