mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
- Updating CI script to use latest shutdown logic - Removed unneeded tests - Split browser tests into ones that need a Gitlab instance those that down - Removing the need to run the full e2e test unless its a release branch - Moved the most tested release tests (the exports) into a integration test since it doesnt require a full Gitlab instance for testing
29 lines
862 B
HTML
29 lines
862 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=1, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"qs": "https://esm.sh/qs?min",
|
|
"xcase": "https://esm.sh/xcase?min",
|
|
"rate-limiter-flexible": "https://esm.sh/rate-limiter-flexible?min",
|
|
"picomatch-browser": "https://esm.sh/picomatch-browser?min",
|
|
"@gitbeaker/requester-utils": "../../../requester-utils/dist/index.mjs",
|
|
"@gitbeaker/core": "../../../core/dist/index.mjs"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module">
|
|
import * as gitbeaker from '../../dist/index.mjs';
|
|
|
|
// BAD PRACTISE!!! - Just for testing purposes
|
|
window.gitbeaker = gitbeaker;
|
|
</script>
|
|
</body>
|
|
</html>
|