mediawiki-skins-Vector/tests/jest/skins.vector.js/__snapshots__/tables.test.js.snap
bwang e42b235669 Wrap tables with JS
Depends-on: Ia271a57776e6f38384c5855727ab82fd7af83241
Bug: T330527
Change-Id: I756f8e1bcd86867bee52962a0d1c2dbb34ca75eb
2024-05-24 15:49:54 -05:00

39 lines
955 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`tables doesnt wrap nested tables 1`] = `
"
<section class=\\"mw-parser-output\\">
<div class=\\"noresize\\"><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></div>
</section>
"
`;
exports[`tables wraps multiple table with div 1`] = `
"
<section class=\\"mw-parser-output\\">
<div class=\\"noresize\\"><table>
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
<div class=\\"noresize\\"><table>
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
</section>
"
`;
exports[`tables wraps table with div 1`] = `
"
<section class=\\"mw-parser-output\\">
<div class=\\"noresize\\"><table>
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
</section>
"
`;