mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-13 08:01:49 +00:00
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`modules/datasource/gitlab-releases/index > getReleases > returns releases from custom registry 1`] = `
|
|
{
|
|
"registryUrl": "https://gitlab.company.com",
|
|
"releases": [
|
|
{
|
|
"gitRef": "v1.0.0",
|
|
"registryUrl": "https://gitlab.company.com",
|
|
"releaseTimestamp": "2021-01-01T00:00:00.000Z",
|
|
"version": "v1.0.0",
|
|
},
|
|
{
|
|
"gitRef": "v1.1.0",
|
|
"registryUrl": "https://gitlab.company.com",
|
|
"releaseTimestamp": "2021-03-01T00:00:00.000Z",
|
|
"version": "v1.1.0",
|
|
},
|
|
],
|
|
"sourceUrl": "https://gitlab.company.com/some/dep2",
|
|
}
|
|
`;
|
|
|
|
exports[`modules/datasource/gitlab-releases/index > getReleases > returns releases from default registry 1`] = `
|
|
{
|
|
"registryUrl": "https://gitlab.com",
|
|
"releases": [
|
|
{
|
|
"gitRef": "v1.0.0",
|
|
"registryUrl": "https://gitlab.com",
|
|
"releaseTimestamp": "2021-01-01T00:00:00.000Z",
|
|
"version": "v1.0.0",
|
|
},
|
|
{
|
|
"gitRef": "v1.1.0",
|
|
"registryUrl": "https://gitlab.com",
|
|
"releaseTimestamp": "2021-03-01T00:00:00.000Z",
|
|
"version": "v1.1.0",
|
|
},
|
|
],
|
|
"sourceUrl": "https://gitlab.com/some/dep2",
|
|
}
|
|
`;
|