refactor: remove jest and lint vitest (#62330)

This commit is contained in:
Oliver Eyton-Williams
2025-09-24 09:27:03 +02:00
committed by GitHub
parent d96d528e8c
commit 51eba06a7d
25 changed files with 253 additions and 1813 deletions

View File

@@ -4,10 +4,7 @@ import { join } from 'path';
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import { getFileName } from './get-file-name';
const basePath = join(
process.cwd(),
'__fixtures__' + process.env.JEST_WORKER_ID
);
const basePath = join(process.cwd(), '__fixtures__');
const commonPath = join(basePath, 'curriculum', 'challenges');
const block = 'project-get-file-name';