Skip to content

Commit ce5a7e5

Browse files
style(formatting): npm run format
I forgot to do this, and now build is failing.
1 parent d198819 commit ce5a7e5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/lib/core/compiler/io/loadPlugins.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import { pathToFileURL } from 'node:url';
44

55
const pluginFile = '#test-plugin.js';
66

7-
const resolvedPath = pathToFileURL(
8-
path.resolve(pluginFile)
9-
).href;
7+
const resolvedPath = pathToFileURL(path.resolve(pluginFile)).href;
108

119
vi.doMock(resolvedPath, () => ({
1210
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types, @typescript-eslint/no-explicit-any
@@ -16,7 +14,7 @@ vi.doMock(resolvedPath, () => ({
1614
class MyComponent extends Component {
1715
// eslint-disable-next-line @typescript-eslint/class-methods-use-this
1816
public render(): string {
19-
return "<html>...</html>";
17+
return '<html>...</html>';
2018
}
2119
}
2220
),

0 commit comments

Comments
 (0)