Skip to content

Commit 869f34f

Browse files
committed
fix(igx-ts): fix test
1 parent 8d9bf7d commit 869f34f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

spec/acceptance/generate-spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ describe("Generate command", () => {
174174

175175
const pathDirectory = path.join(templateFolderPath, "files", "src", "app", "__path__");
176176
expect(fs.existsSync(pathDirectory)).toBeTruthy();
177-
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.component.scss"))).toBeTruthy();
178-
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.component.html"))).toBeTruthy();
179-
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.component.spec.ts"))).toBeTruthy();
180-
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.component.ts"))).toBeTruthy();
177+
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.scss"))).toBeTruthy();
178+
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.html"))).toBeTruthy();
179+
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.spec.ts"))).toBeTruthy();
180+
expect(fs.existsSync(path.join(pathDirectory, "__filePrefix__.ts"))).toBeTruthy();
181181
});
182182

183183
it("Should correctly generate react template", async () => {

0 commit comments

Comments
 (0)