diff --git a/src/plugins/codeStyle/index.spec.ts b/src/plugins/codeStyle/index.spec.ts index ca80595..86ee41e 100644 --- a/src/plugins/codeStyle/index.spec.ts +++ b/src/plugins/codeStyle/index.spec.ts @@ -642,7 +642,7 @@ describe('codeStyle', () => { doTest('print `${"0xffffff"}`', [9, 19]); // expression with a string in it doTest('print `0xffffff${"0xffffff"}`', [17, 27]); // color then expression doTest('print `${"0xffffff"}0xffffff`', [9, 19]); // expression then color - doTest('print `${"0xffffff"}0xffffff${"0xffffff"}`', [9, 19], [29, 39]); // expression then color then expression + doTest('print `${"0xffffff"}0xffffff${"0xffffff"}`', [9, 19], [30, 40]); // expression then color then expression doTest('print `0xffffff${"0xffffff"}0xffffff`', [17, 27]); // color then expression then color function doTest(code: string, ...diagnosticCharLocations: Array<[startChar: number, endChar: number]>) {