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 105f0ed commit e511cc7Copy full SHA for e511cc7
test/mocks/directory.ts
@@ -11,7 +11,10 @@ export function mockIsolatedDirectory({ git }: { git: boolean; }) {
11
cwd = process.cwd();
12
dir = await mkdtemp(join(tmpdir(), "framework-test-"));
13
process.chdir(dir);
14
- if (git) (await promisify(exec)("git init")).stdout;
+ if (git) {
15
+ const {stdout, stderr} = (await promisify(exec)("git init"));
16
+ console.log({stdout, stderr});
17
+ };
18
});
19
20
afterEach(async () => {
0 commit comments