We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60031df commit 28921e8Copy full SHA for 28921e8
apps/generator-cli/src/app/mocks/passthrough-command.mock.ts
@@ -1,6 +1,6 @@
1
export class PassthroughCommandMock {
2
name = jest.fn().mockReturnValue(this._name);
3
- options: { [key: string]: string } = {};
+ options: Record<string, string> = {};
4
5
parseOptions = jest.fn().mockImplementation(() => {
6
const result = this.args.find(a => a.startsWith('--custom-generator'))?.split('=')[1];
0 commit comments