10 lines
347 B
TypeScript
Raw Normal View History

import { getCurrentExecutionFile } from '@/common/utils';
import { beforeEach, describe, expect, it } from 'vitest';
describe('TaskCache', () => {
it('should return the current execution file', () => {
const currentExecutionFile = getCurrentExecutionFile();
expect(currentExecutionFile).toBe('/tests/unit-test/util.test.ts');
});
});