(shell: Pick<Shell, "name">)
| 23 | } |
| 24 | |
| 25 | takeSnapshot(shell: Pick<Shell, "name">): this { |
| 26 | const script = this.lines.join("\n") |
| 27 | expect(script).toMatchSnapshot(shell.name()) |
| 28 | |
| 29 | return this |
| 30 | } |
| 31 | |
| 32 | addExtraEnvVar(name: string, value: string): this { |
| 33 | return new Script( |
no test coverage detected