mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-07 09:01:38 +00:00
10 lines
347 B
TypeScript
10 lines
347 B
TypeScript
![]() |
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');
|
||
|
});
|
||
|
});
|