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

62 lines
1.7 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`multiple.js - flow-verify 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;
for (var i = 0, len = arr.length; i < len; i++) {}
var templateTagsMapping = {
'%{itemIndex}': 'index',
'%{itemContentMetaTextViews}': 'views'
},
separator = '<span class="item__content__meta__separator">•</span>',
templateTagsList = $.map(templateTagsMapping, function(value, key) {
return key;
}),
data;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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;
for (var i = 0, len = arr.length; i < len; i++) {}
var templateTagsMapping = {
"%{itemIndex}": "index",
"%{itemContentMetaTextViews}": "views"
},
separator = '<span class="item__content__meta__separator">•</span>',
templateTagsList = $.map(templateTagsMapping, function(value, key) {
return key;
}),
data;
`;
exports[`string.js - flow-verify 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>";
`;