2024-05-24 16:15:14 +00:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
2024-06-07 15:52:40 +00:00
|
|
|
exports[`tables doesnt wrap floated tables 1`] = `
|
|
|
|
"
|
|
|
|
<table class=\\"wikitable\\" style=\\"float:right\\">
|
|
|
|
<tbody>
|
|
|
|
<tr><th>table table table</th></tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
"
|
|
|
|
`;
|
|
|
|
|
2024-05-24 16:15:14 +00:00
|
|
|
exports[`tables doesnt wrap nested tables 1`] = `
|
|
|
|
"
|
|
|
|
<section class=\\"mw-parser-output\\">
|
2024-05-28 21:36:07 +00:00
|
|
|
<div class=\\"noresize\\"><table class=\\"wikitable\\">
|
2024-05-24 16:15:14 +00:00
|
|
|
<tbody>
|
|
|
|
<tr><th>table table table</th></tr>
|
2024-05-29 18:38:19 +00:00
|
|
|
<tr><td><table class=\\"wikitable\\"><tbody><tr><th>table table table</th></tr></tbody></table></td><td></td></tr>
|
2024-05-24 16:15:14 +00:00
|
|
|
</tbody>
|
|
|
|
</table></div>
|
|
|
|
</section>
|
|
|
|
"
|
|
|
|
`;
|
|
|
|
|
2024-05-28 21:36:07 +00:00
|
|
|
exports[`tables doesnt wrap tables that are already wrapped 1`] = `
|
|
|
|
"
|
|
|
|
<div class=\\"mw-parser-output\\">
|
2024-06-07 15:52:40 +00:00
|
|
|
<div class=\\"noresize\\">
|
|
|
|
<table class=\\"wikitable\\">
|
2024-05-28 21:36:07 +00:00
|
|
|
<tbody>
|
|
|
|
<tr><th>table table table</th></tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
"
|
|
|
|
`;
|
|
|
|
|
|
|
|
exports[`tables doesnt wrap tables that are not wikitables 1`] = `
|
|
|
|
"
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr><th>table table table</th></tr>
|
|
|
|
<tr><td><table><tbody><tr><th>table table table</th></tr></tbody></table></td><td></td></tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
"
|
|
|
|
`;
|
|
|
|
|
2024-05-24 16:15:14 +00:00
|
|
|
exports[`tables wraps multiple table with div 1`] = `
|
|
|
|
"
|
|
|
|
<section class=\\"mw-parser-output\\">
|
2024-05-28 21:36:07 +00:00
|
|
|
<div class=\\"noresize\\"><table class=\\"wikitable\\">
|
2024-05-24 16:15:14 +00:00
|
|
|
<tbody><tr><th>table table table</th></tr></tbody>
|
|
|
|
</table></div>
|
2024-05-29 18:38:19 +00:00
|
|
|
<div class=\\"noresize\\"><table class=\\"wikitable\\">
|
|
|
|
</table></div><div class=\\"noresize\\"><table class=\\"wikitable\\">
|
|
|
|
<tbody><tr><th>table table table</th></tr></tbody>
|
|
|
|
</table></div>
|
2024-05-28 21:36:07 +00:00
|
|
|
<div class=\\"noresize\\"><table class=\\"wikitable\\">
|
2024-05-24 16:15:14 +00:00
|
|
|
<tbody><tr><th>table table table</th></tr></tbody>
|
|
|
|
</table></div>
|
|
|
|
</section>
|
|
|
|
"
|
|
|
|
`;
|
|
|
|
|
|
|
|
exports[`tables wraps table with div 1`] = `
|
|
|
|
"
|
|
|
|
<section class=\\"mw-parser-output\\">
|
2024-05-28 21:36:07 +00:00
|
|
|
<div class=\\"noresize\\"><table class=\\"wikitable\\">
|
2024-05-24 16:15:14 +00:00
|
|
|
<tbody><tr><th>table table table</th></tr></tbody>
|
|
|
|
</table></div>
|
|
|
|
</section>
|
|
|
|
"
|
|
|
|
`;
|