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

38 lines
1022 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`multiple.js 1`] = `
var assert = require('assert'),
lookup = require('../lookup');
const eloBar = require("elo-bar")
, foo = require("foo")
, otherThing = require("other-thing");
var a, b, c;
let superSuperSuperLong1, superSuperSuperLong2, superSuperSuperLong3, superSuperSuperLong4;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var assert = require("assert"),
lookup = require("../lookup");
const eloBar = require("elo-bar"),
foo = require("foo"),
otherThing = require("other-thing");
var a, b, c;
let superSuperSuperLong1,
superSuperSuperLong2,
superSuperSuperLong3,
superSuperSuperLong4;
`;
exports[`string.js 1`] = `
elements[0].innerHTML = '<div></div><div></div><div></div><div></div><div></div><div></div>';
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
elements[0].innerHTML =
"<div></div><div></div><div></div><div></div><div></div><div></div>";
`;