mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-13 08:01:49 +00:00
72 lines
1.8 KiB
Text
72 lines
1.8 KiB
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`modules/manager/jsonnet-bundler/artifacts > performs lock file maintenance 1`] = `
|
|
[
|
|
{
|
|
"cmd": "jb update",
|
|
"options": {
|
|
"cwd": "/tmp/github/some/repo",
|
|
"encoding": "utf-8",
|
|
"env": {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"maxBuffer": 10485760,
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`modules/manager/jsonnet-bundler/artifacts > returns error when jb update fails 1`] = `
|
|
[
|
|
{
|
|
"cmd": "jb update",
|
|
"options": {
|
|
"cwd": "/tmp/github/some/repo",
|
|
"encoding": "utf-8",
|
|
"env": {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"maxBuffer": 10485760,
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`modules/manager/jsonnet-bundler/artifacts > returns null if there are no changes 1`] = `[]`;
|
|
|
|
exports[`modules/manager/jsonnet-bundler/artifacts > updates the vendor dir when dependencies change 1`] = `
|
|
[
|
|
{
|
|
"cmd": "jb update https://github.com/foo/foo.git ssh://git@github.com/foo/foo.git/bar",
|
|
"options": {
|
|
"cwd": "/tmp/github/some/repo",
|
|
"encoding": "utf-8",
|
|
"env": {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"maxBuffer": 10485760,
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
]
|
|
`;
|