We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ec281 commit 33adfecCopy full SHA for 33adfec
spec/acceptance/add-spec.ts
@@ -4,7 +4,8 @@ import {
4
GoogleAnalytics,
5
GoogleAnalyticsParameters,
6
ProjectConfig,
7
- Config
+ Config,
8
+ PackageManager
9
} from "@igniteui/cli-core";
10
import * as fs from "fs";
11
import { EOL } from "os";
@@ -312,6 +313,7 @@ export class AppModule {
312
313
// TODO: Mock out template manager and project register
314
const mockConfig = {} as unknown as Config;
315
spyOn(ProjectConfig, "globalConfig").and.returnValue(mockConfig);
316
+ spyOn(PackageManager, "queuePackage");
317
318
fs.writeFileSync(ProjectConfig.configFile, JSON.stringify({
319
project: { framework: "react", projectType: "igr-ts", components: [] }
0 commit comments