Skip to content

Commit e4b0197

Browse files
committed
fix(nx-plugin): format
1 parent fb016ed commit e4b0197

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/nx-plugin/src/generators/configuration/generator.integration.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import {
44
readProjectConfiguration,
55
} from '@nx/devkit';
66
import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
7+
import { readFile } from 'node:fs/promises';
78
import { join } from 'node:path';
89
import { describe, expect, it } from 'vitest';
910
import { configurationGenerator } from './generator';
10-
import {readFile} from "node:fs/promises";
1111

1212
describe('configuration generator', () => {
1313
let tree: Tree;
@@ -43,7 +43,9 @@ describe('configuration generator', () => {
4343
)}`,
4444
},
4545
});
46-
expect(tree.read('test-app/code-pushup.config.ts')?.toString()).toMatchSnapshot();
46+
expect(
47+
tree.read('test-app/code-pushup.config.ts')?.toString(),
48+
).toMatchSnapshot();
4749
});
4850

4951
it('should NOT add code-pushup.config.ts to the project root if code-pushup.config.js is given', async () => {

0 commit comments

Comments
 (0)