prettier/tests/switch/__snapshots__/jsfmt.spec.js.snap

26 lines
445 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`empty_switch.js 1`] = `
"switch (1) { default:; }
switch (1) {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
switch (1) {
default:
}
switch (1) {
}
"
`;
exports[`empty_switch.js 2`] = `
"switch (1) { default:; }
switch (1) {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
switch (1) {
default:
}
switch (1) {
}
"
`;