mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
152 lines
5.3 KiB
Plaintext
152 lines
5.3 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`template custom body after 1`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title></title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\"}
|
|
</script>
|
|
|
|
</head>
|
|
<body class=\\"body\\">
|
|
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
<script src=\\"foo\\"/>
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|
|
|
|
exports[`template custom body before 1`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title></title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\"}
|
|
</script>
|
|
|
|
</head>
|
|
<body class=\\"body\\">
|
|
<script src=\\"fooBefore\\"/><script src=\\"barBefore\\"/>
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|
|
|
|
exports[`template custom render 1`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title></title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\"}
|
|
</script>
|
|
|
|
</head>
|
|
<body class=\\"body\\">
|
|
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|
|
|
|
exports[`template custom title 1`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title>foo title</title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\",\\"title\\":\\"foo title\\"}
|
|
</script>
|
|
|
|
</head>
|
|
<body class=\\"body\\">
|
|
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|
|
|
|
exports[`template custom title 2`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title>foo title</title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\",\\"title\\":\\"foo title\\"}
|
|
</script>
|
|
|
|
</head>
|
|
<body class=\\"body\\">
|
|
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|
|
|
|
exports[`template meta scripts 1`] = `
|
|
"
|
|
<!DOCTYPE html>
|
|
<html lang=\\"en-us\\">
|
|
<head>
|
|
<meta charset=\\"utf-8\\">
|
|
<base href=\\"http://domain.com\\">
|
|
<title></title>
|
|
<link rel=\\"icon\\" href=\\"http://domain.com-/static/favicon.ico\\"/>
|
|
<meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1\\" />
|
|
<script>
|
|
window.__VERDACCIO_BASENAME_UI_OPTIONS={\\"base\\":\\"http://domain.com\\"}
|
|
</script>
|
|
<style>.someclass{font-size:10px;}</style>
|
|
</head>
|
|
<body class=\\"body\\">
|
|
|
|
<div id=\\"root\\"></div>
|
|
<script defer=\\"defer\\" src=\\"http://domain.com/-/static/runtime.6126058572f989c948b1.js\\"></script><script defer=\\"defer\\" src=\\"http://domain.com/-/static/main.6126058572f989c948b1.js\\"></script>
|
|
|
|
</body>
|
|
</html>
|
|
"
|
|
`;
|