-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Castro, Mario
committed
Dec 5, 2024
1 parent
9346515
commit 123e787
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,10 @@ describe('Project', () => { | |
|
||
before(async () => { | ||
// Required by Github actions CI/CD, because it doesn't have git configured | ||
await command('git config --global user.name || git config --global user.name "Booster Test"') | ||
await command('git config --global user.email || git config --global user.email "[email protected]"') | ||
await command('git config --global user.name || git config --global user.name "Booster Test"', { shell: true }) | ||
await command('git config --global user.email || git config --global user.email "[email protected]"', { | ||
shell: true, | ||
}) | ||
|
||
createFolder(SANDBOX_INTEGRATION_DIR) | ||
}) | ||
|
@@ -114,6 +116,7 @@ describe('Project', () => { | |
): Promise<{ stdout: string; stderr: string }> => { | ||
const cliProcess = command(`${cliPath} new:project ${projectName} ${flags.join(' ')}`, { | ||
cwd: SANDBOX_INTEGRATION_DIR, | ||
shell: true, | ||
}) | ||
|
||
if (promptAnswers) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters