@@ -4,7 +4,7 @@ import dedent from "ts-dedent";
44import { cwd } from "node:process" ;
55
66import { generateUseIcons } from "./0002-generate-use-icons" ;
7- import { createTestIconFile } from ' ./test-helper' ;
7+ import { createTestIconFile } from " ./test-helper" ;
88
99describe ( "migrateComponents" , ( ) => {
1010 describe ( "standalone angular components" , ( ) => {
@@ -22,9 +22,9 @@ describe("migrateComponents", () => {
2222
2323 const useIconFile = await createTestIconFile ( [
2424 {
25- filePath : ' foo.component.ts' ,
26- sourceFileText : dedent ( component )
27- }
25+ filePath : " foo.component.ts" ,
26+ sourceFileText : dedent ( component ) ,
27+ } ,
2828 ] ) ;
2929
3030 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -46,9 +46,9 @@ describe("migrateComponents", () => {
4646
4747 const useIconFile = await createTestIconFile ( [
4848 {
49- filePath : ' foo.component.ts' ,
50- sourceFileText : dedent ( component )
51- }
49+ filePath : " foo.component.ts" ,
50+ sourceFileText : dedent ( component ) ,
51+ } ,
5252 ] ) ;
5353
5454 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -72,9 +72,9 @@ describe("migrateComponents", () => {
7272
7373 const useIconFile = await createTestIconFile ( [
7474 {
75- filePath : ' foo.component.ts' ,
76- sourceFileText : dedent ( component )
77- }
75+ filePath : " foo.component.ts" ,
76+ sourceFileText : dedent ( component ) ,
77+ } ,
7878 ] ) ;
7979
8080 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -91,9 +91,9 @@ describe("migrateComponents", () => {
9191
9292 const useIconFile = await createTestIconFile ( [
9393 {
94- filePath : ' foo.component.html' ,
95- sourceFileText : dedent ( html )
96- }
94+ filePath : " foo.component.html" ,
95+ sourceFileText : dedent ( html ) ,
96+ } ,
9797 ] ) ;
9898
9999 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -113,9 +113,9 @@ describe("migrateComponents", () => {
113113
114114 const useIconFile = await createTestIconFile ( [
115115 {
116- filePath : ' foo.component.html' ,
117- sourceFileText : dedent ( html )
118- }
116+ filePath : " foo.component.html" ,
117+ sourceFileText : dedent ( html ) ,
118+ } ,
119119 ] ) ;
120120
121121 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -135,9 +135,9 @@ describe("migrateComponents", () => {
135135
136136 const useIconFile = await createTestIconFile ( [
137137 {
138- filePath : ' foo.component.html' ,
139- sourceFileText : dedent ( html )
140- }
138+ filePath : " foo.component.html" ,
139+ sourceFileText : dedent ( html ) ,
140+ } ,
141141 ] ) ;
142142
143143 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -165,9 +165,9 @@ describe("migrateComponents", () => {
165165
166166 const useIconFile = await createTestIconFile ( [
167167 {
168- filePath : ' foo.component.ts' ,
169- sourceFileText : dedent ( component )
170- }
168+ filePath : " foo.component.ts" ,
169+ sourceFileText : dedent ( component ) ,
170+ } ,
171171 ] ) ;
172172
173173 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
@@ -194,9 +194,9 @@ describe("migrateComponents", () => {
194194
195195 const useIconFile = await createTestIconFile ( [
196196 {
197- filePath : ' foo.component.ts' ,
198- sourceFileText : dedent ( component )
199- }
197+ filePath : " foo.component.ts" ,
198+ sourceFileText : dedent ( component ) ,
199+ } ,
200200 ] ) ;
201201
202202 expect ( dedent ( useIconFile . getText ( ) ) ) . toBe (
0 commit comments