Skip to content

Commit 80b9440

Browse files
Fix tests
1 parent 37487dd commit 80b9440

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sass-renderer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ const OUTPUT_FILE_DEFAULT = path.resolve(__dirname, './test-css.ts');
2727
const OUTPUT_FILE_CUSTOM = path.resolve(__dirname, './test-styles.ts');
2828
const OUTPUT_FILE_ESCAPE = path.resolve(__dirname, './test-escape-char.ts');
2929

30-
const OUTPUT_EXPECTED_DEFAULT = `import {css} from 'lit-element';
30+
const OUTPUT_EXPECTED_DEFAULT = `import {css} from 'lit';
3131
3232
export const styles = css\`a{color:red}\`;\n`;
3333

34-
const OUTPUT_EXPECTED_ESCAPE = `import {css} from 'lit-element';
34+
const OUTPUT_EXPECTED_ESCAPE = `import {css} from 'lit';
3535
3636
export const styles = css\`.char-render{content:""}\`;
3737
`;

0 commit comments

Comments
 (0)