Skip to content
This repository was archived by the owner on Apr 25, 2020. It is now read-only.

Commit 4d74c44

Browse files
committed
Update snapshots after export changes
1 parent 51ce0ca commit 4d74c44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/__snapshots__/ExportGenerator.test.ts.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
exports[`ExportGenerator creates exports with constants for every camel-case class 1`] = `
44
"declare const styles: {
5+
[index: string]: string;
56
\\"camelCase\\": string;
67
\\"camelCase2\\": string;
78
\\"some-class\\": string;
89
\\"const\\": string;
910
};
1011
export default styles;
11-
export const camelCase: string;
12-
export const camelCase2: string;
1312
"
1413
`;
1514

1615
exports[`ExportGenerator creates exports without constants if no camel-case class was found 1`] = `
1716
"declare const styles: {
17+
[index: string]: string;
1818
\\"some-class\\": string;
1919
\\"some-class-2\\": string;
2020
\\"const\\": string;

0 commit comments

Comments
 (0)