@diplodoc/cli-tests 5.11.6 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/e2e/__snapshots__/alternates.test.ts.snap +905 -0
- package/e2e/__snapshots__/bundles.spec.ts.snap +6 -0
- package/e2e/__snapshots__/include-toc.test.ts.snap +3 -0
- package/e2e/__snapshots__/preprocess.test.ts.snap +606 -4
- package/e2e/__snapshots__/regression.test.ts.snap +2 -0
- package/e2e/__snapshots__/rtl.spec.ts.snap +16 -4
- package/e2e/__snapshots__/single-page.spec.ts.snap +9 -3
- package/e2e/alternates.test.ts +34 -0
- package/e2e/preprocess.test.ts +4 -0
- package/e2e/translation.spec.ts +1 -1
- package/fixtures/utils/test.ts +2 -0
- package/mocks/alternates/input/.yfm +1 -0
- package/mocks/alternates/input/az/about.md +3 -0
- package/mocks/alternates/input/az/deep/test.md +3 -0
- package/mocks/alternates/input/az/index.yaml +3 -0
- package/mocks/alternates/input/az/toc.yaml +6 -0
- package/mocks/alternates/input/en/about.md +3 -0
- package/mocks/alternates/input/en/deep/test.md +3 -0
- package/mocks/alternates/input/en/index.yaml +3 -0
- package/mocks/alternates/input/en/toc.yaml +6 -0
- package/mocks/alternates/input/ru/about.md +8 -0
- package/mocks/alternates/input/ru/deep/test.md +3 -0
- package/mocks/alternates/input/ru/index.yaml +3 -0
- package/mocks/alternates/input/ru/toc.yaml +6 -0
- package/mocks/preprocess/input/_assets/1.svg +15 -0
- package/mocks/preprocess/input/autotitle.md +13 -0
- package/mocks/preprocess/input/images.md +92 -1
- package/package.json +1 -1
|
@@ -58,6 +58,8 @@ exports[`Check bundles > bundles list is correct 2`] = `
|
|
|
58
58
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
59
59
|
<base href="./" />
|
|
60
60
|
<title>Header | Skip html extension</title>
|
|
61
|
+
|
|
62
|
+
|
|
61
63
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
62
64
|
<meta name="availableLangs" content="en,ru">
|
|
63
65
|
<meta http-equiv="Content-Security-Policy" content="worker-src 'self';">
|
|
@@ -97,6 +99,8 @@ exports[`Check bundles > bundles list is correct 3`] = `
|
|
|
97
99
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
98
100
|
<base href="./" />
|
|
99
101
|
<title>Page 1 | Skip html extension</title>
|
|
102
|
+
|
|
103
|
+
|
|
100
104
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
101
105
|
<meta http-equiv="Content-Security-Policy" content="worker-src 'self';">
|
|
102
106
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
@@ -135,6 +139,8 @@ exports[`Check bundles > bundles list is correct 4`] = `
|
|
|
135
139
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
136
140
|
<base href="./" />
|
|
137
141
|
<title>Page 2 | Skip html extension</title>
|
|
142
|
+
|
|
143
|
+
|
|
138
144
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
139
145
|
<meta http-equiv="Content-Security-Policy" content="worker-src 'self';">
|
|
140
146
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|