Skip to content

Commit 7abcae7

Browse files
committed
format
1 parent f39c5b6 commit 7abcae7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e/cli-e2e/tests/help.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { join } from 'node:path';
12
import { removeColorCodes } from '@code-pushup/test-utils';
23
import { executeProcess } from '@code-pushup/utils';
3-
import {join} from "node:path";
44

55
describe('CLI help', () => {
66
const envRoot = join('static-environments', 'cli-e2e-env');

static-environments/cli-e2e-env/dummy.plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { readFile } from 'node:fs/promises';
2+
import { join } from 'node:path';
23
import type { PluginConfig } from '@code-pushup/models';
3-
import {join} from "node:path";
44

55
export const dummyPluginSlug = 'dummy-plugin';
66

@@ -32,7 +32,7 @@ export function create(): PluginConfig {
3232
description: 'A dummy plugin to test the cli.',
3333
runner: async () => {
3434
const itemCount = JSON.parse(
35-
await readFile(join('src','items.json'), 'utf-8'),
35+
await readFile(join('src', 'items.json'), 'utf-8'),
3636
).length;
3737
return [
3838
{

0 commit comments

Comments
 (0)