Skip to content

Commit

Permalink
test: schematic unit test only no-standlone
Browse files Browse the repository at this point in the history
  • Loading branch information
damingerdai committed Nov 29, 2023
1 parent 2d0e3b6 commit fa521f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/ngx-pendo/schematics/ng-add/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('ng add ngx pendo', () => {
style: Style.Scss,
skipTests: false,
skipPackageJson: false,
standalone: true
standalone: false
};
let appTree: UnitTestTree | undefined;

Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-pendo/schematics/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function(options: NgxPendoNgAddSchema): Rule {
if (project.extensions.projectType === ProjectType.Application) {
addNgxPendoModule(project as workspaces.ProjectDefinition, _host, options);
}
addPackageToPackageJson(_host, 'ngx-pendo', '~1.12.0');
// addPackageToPackageJson(_host, 'ngx-pendo', '~1.12.0');
_context.logger.log('info', '✅️ Added "ngx-pendo');
_context.addTask(new NodePackageInstallTask());
};
Expand Down

0 comments on commit fa521f4

Please sign in to comment.