(filePath: string, contents: string, mode = 0o600)
| 33 | ); |
| 34 | |
| 35 | const writeAuthFile = (filePath: string, contents: string, mode = 0o600): void => { |
| 36 | mkdirSync(dirname(filePath), { recursive: true }); |
| 37 | writeFileSync(filePath, contents, { mode }); |
| 38 | }; |
| 39 | |
| 40 | describe("file secrets auth location", () => { |
| 41 | let workDir: string; |