Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-SteveBrush committed Jul 26, 2024
1 parent a4d2dae commit 99c3af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/stache/schematics/ng-add/ng-add.schematic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('ng-add.schematic', () => {
];

for (const packageName of packageNames) {
expect(packageJson.dependencies[packageName]).toEqual(`^${VERSION}`);
expect(packageJson.dependencies[packageName]).toEqual(`^${VERSION.full}`);
}
});
});
2 changes: 1 addition & 1 deletion libs/stache/schematics/ng-add/ng-add.schematic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export default function ngAdd(): Rule {
return async (_tree, context) => {
context.addTask(new NodePackageInstallTask());

return chain([installEssentialSkyUxPackages('^11')]);
return chain([installEssentialSkyUxPackages('^11.0.0-alpha.6')]);
};
}

0 comments on commit 99c3af4

Please sign in to comment.