mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-25 06:56:56 +02:00
* feat(v2): headerlinks * fix test * nits * remove tictactoe: * headerIcon * nits * remove lang dropdown * fix failing test * search box * algolia search * use babel-eslint to resolve dynamic import * nits * favicon and title * Update .eslintignore
117 lines
2.2 KiB
Text
117 lines
2.2 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`loadSidebars normal site with sidebars 1`] = `
|
|
Object {
|
|
"docs": Array [
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "foo/bar",
|
|
"type": "doc",
|
|
},
|
|
Object {
|
|
"id": "foo/baz",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Test",
|
|
"type": "category",
|
|
},
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "hello",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Guides",
|
|
"type": "category",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`loadSidebars site with sidebars & versioned sidebars 1`] = `
|
|
Object {
|
|
"docs": Array [
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "foo/bar",
|
|
"type": "doc",
|
|
},
|
|
Object {
|
|
"id": "foo/baz",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Test",
|
|
"type": "category",
|
|
},
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "hello",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Guides",
|
|
"type": "category",
|
|
},
|
|
],
|
|
"version-1.0.0-docs": Array [
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "version-1.0.0-foo/bar",
|
|
"type": "doc",
|
|
},
|
|
Object {
|
|
"id": "version-1.0.0-foo/baz",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Test",
|
|
"type": "category",
|
|
},
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "version-1.0.0-hello",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Guides",
|
|
"type": "category",
|
|
},
|
|
],
|
|
"version-1.0.1-docs": Array [
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "version-1.0.1-foo/bar",
|
|
"type": "doc",
|
|
},
|
|
Object {
|
|
"id": "version-1.0.1-foo/baz",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Test",
|
|
"type": "category",
|
|
},
|
|
Object {
|
|
"items": Array [
|
|
Object {
|
|
"id": "version-1.0.1-hello",
|
|
"type": "doc",
|
|
},
|
|
],
|
|
"label": "Guides",
|
|
"type": "category",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`loadSidebars site without sidebars 1`] = `Object {}`;
|