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

23 lines
675 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`binaryish.js 1`] = `
const computedDescriptionLines = (showConfirm &&
descriptionLinesConfirming) ||
(focused && !loading && descriptionLinesFocused) ||
descriptionLines;
computedDescriptionLines = (focused &&
!loading &&
descriptionLinesFocused) ||
descriptionLines;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const computedDescriptionLines =
(showConfirm && descriptionLinesConfirming) ||
(focused && !loading && descriptionLinesFocused) ||
descriptionLines;
computedDescriptionLines =
(focused && !loading && descriptionLinesFocused) || descriptionLines;
`;