-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<img width="890" alt="Screenshot 2024-04-12 at 2 08 14 PM" src="https://github.com/autoblocksai/cli/assets/7498009/1e47ad47-75c9-49a8-9311-0265f4e3a976"> the links next to the test name will wrap if they're too long, can't figure out why github actions won't display the full width even w/ width=100%
- Loading branch information
Nicole White
authored
Apr 12, 2024
1 parent
3417bdd
commit f831bb4
Showing
8 changed files
with
121 additions
and
63 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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { AUTOBLOCKS_WEBAPP_BASE_URL } from '../../../../util/constants'; | ||
|
||
export function makeAutoblocksCIBuildHtmlUrl(args: { | ||
branchId: string; | ||
buildId: string; | ||
}): string { | ||
return `${AUTOBLOCKS_WEBAPP_BASE_URL}/testing/ci?branchId=${args.branchId}&buildId=${args.buildId}`; | ||
} | ||
|
||
export function makeAutoblocksTestHtmlUrl(args: { | ||
testExternalId: string; | ||
}): string { | ||
const subpath = process.env.CI ? 'ci' : 'local'; | ||
return `${AUTOBLOCKS_WEBAPP_BASE_URL}/testing/${subpath}/test/${encodeURIComponent(args.testExternalId)}`; | ||
} |