diff --git a/.eslintrc.js b/.eslintrc.js index 4037dcb..445790c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,7 +3,7 @@ module.exports = { browser: true, }, extends: ['airbnb-base', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'], - ignorePatterns: ['lib/*', '/*.js', '/*.ts'], + ignorePatterns: ['lib/*', '/*.js', '/*.ts', '/**/*.test.ts'], parser: '@typescript-eslint/parser', parserOptions: { project: './tsconfig.json', diff --git a/src/__test__/oof.test.ts b/src/__test__/oof.test.ts index 41c67fb..6bbf556 100644 --- a/src/__test__/oof.test.ts +++ b/src/__test__/oof.test.ts @@ -1,3 +1,4 @@ +import { describe, expect, it } from 'vitest'; import { LOG } from '@/testing/oof'; describe('oof.ts', () => { diff --git a/vite.config.js b/vite.config.js index 5217c56..7fa6d57 100644 --- a/vite.config.js +++ b/vite.config.js @@ -27,7 +27,4 @@ module.exports = defineConfig({ fileName: 'providers', }, }, - test: { - globals: true, - }, });