Skip to content

Commit 13f76ad

Browse files
committed
test(schematics): drop obsolete fflate checks
1 parent b455021 commit 13f76ad

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

projects/igniteui-angular/schematics/ng-add/index.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,13 @@ describe('ng-add schematics', () => {
8989
it('should add the correct igniteui-angular packages to package.json dependencies', async () => {
9090
await runner.runSchematic('ng-add', { normalizeCss: false }, tree);
9191
const pkgJsonData = JSON.parse(tree.readContent('/package.json'));
92-
expect(pkgJsonData.dependencies['fflate']).toBeTruthy();
9392
// hammer is optional now.
9493
expect(pkgJsonData.dependencies['hammerjs']).toBeFalsy();
9594
});
9695

9796
it('should add hammerjs dependency to package.json dependencies if addHammer prompt is set.', async () => {
9897
await runner.runSchematic('ng-add', { normalizeCss: false, addHammer: true }, tree);
9998
const pkgJsonData = JSON.parse(tree.readContent('/package.json'));
100-
expect(pkgJsonData.dependencies['fflate']).toBeTruthy();
10199
expect(pkgJsonData.dependencies['hammerjs']).toBeTruthy();
102100
});
103101

0 commit comments

Comments
 (0)