Skip to content

Commit 467f3b4

Browse files
committed
fix(src): Resolve incorrect dirname variable
1 parent 7cfcc33 commit 467f3b4

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/baseConfig.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import type { FrameworkTestConfig } from './types.js';
22

33
import { execSync } from 'child_process';
4+
import { fileURLToPath } from 'url';
5+
import { dirname } from 'path';
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = dirname(__filename);
49

510
export const baseConfig: FrameworkTestConfig = {
611
// Projects

0 commit comments

Comments
 (0)