Skip to content

Commit c6d1aeb

Browse files
committed
refactor: fix lint
1 parent 88bf84c commit c6d1aeb

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

e2e/create-cli-e2e/tests/init.e2e.test.ts

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
import { dirname, join, relative } from 'node:path';
2-
import { afterEach, expect } from 'vitest';
3-
import { nxTargetProject } from '@code-pushup/test-nx-utils';
4-
import { teardownTestFolder } from '@code-pushup/test-setup';
5-
import {
6-
E2E_ENVIRONMENTS_DIR,
7-
TEST_OUTPUT_DIR,
8-
createNpmWorkspace,
9-
removeColorCodes,
10-
} from '@code-pushup/test-utils';
11-
import { executeProcess, readJsonFile, readTextFile } from '@code-pushup/utils';
1+
import {join} from 'node:path';
2+
import {afterEach, expect} from 'vitest';
3+
import {nxTargetProject} from '@code-pushup/test-nx-utils';
4+
import {teardownTestFolder} from '@code-pushup/test-setup';
5+
import {createNpmWorkspace, E2E_ENVIRONMENTS_DIR, removeColorCodes, TEST_OUTPUT_DIR,} from '@code-pushup/test-utils';
6+
import {executeProcess, readJsonFile, readTextFile} from '@code-pushup/utils';
127

138
describe('create-cli-inti', () => {
149
const workspaceRoot = join(E2E_ENVIRONMENTS_DIR, nxTargetProject());
@@ -53,7 +48,7 @@ describe('create-cli-inti', () => {
5348
});
5449

5550
it('should execute package correctly over npm init', async () => {
56-
const cwd = join(testFileDir, 'npm-init');
51+
const cwd = join(testFileDir, 'npm-init-setup');
5752
await createNpmWorkspace(cwd);
5853

5954
const { code, stdout } = await executeProcess({

0 commit comments

Comments
 (0)