Skip to content

Commit 964efa9

Browse files
prettier
1 parent 8aecab4 commit 964efa9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/compiler/bundle/test/ext-transforms-plugin.spec.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,16 @@ describe('extTransformsPlugin', () => {
116116
it('should pass false if shadow, hydrate, but using HMR in dev watch mode', async () => {
117117
const { plugin, transformCssToEsmSpy, config } = setup({ platform: 'hydrate' });
118118

119-
config.flags.watch = true
120-
config.flags.dev = true
121-
config.flags.serve = true
122-
config.devServer = { reloadStrategy: "hmr" };
119+
config.flags.watch = true;
120+
config.flags.dev = true;
121+
config.flags.serve = true;
122+
config.devServer = { reloadStrategy: 'hmr' };
123123

124124
// @ts-ignore the Rollup plugins expect to be called in a Rollup context
125-
await plugin.transform('asdf', '/some/stubbed/path/foo.css?tag=my-component&encapsulation=shadow')
125+
await plugin.transform('asdf', '/some/stubbed/path/foo.css?tag=my-component&encapsulation=shadow');
126126
expect(transformCssToEsmSpy.mock.calls[0][0].commentOriginalSelector).toBe(false);
127127
});
128-
128+
129129
it.each(['tag=my-component&encapsulation=scoped', 'tag=my-component&encapsulation=shadow', 'tag=my-component'])(
130130
'should pass false if %p without hydrate',
131131
async (queryParams) => {

0 commit comments

Comments
 (0)