style: fix prettier lint

pull/9272/head
Rubin Raithel 3 years ago
parent cd11e07318
commit 7f8b922503
No known key found for this signature in database
GPG Key ID: 23807091FCC80908

@ -36,7 +36,7 @@ export default {
// Create a condition objects that can be toggled // Create a condition objects that can be toggled
let shouldRunIn = true; let shouldRunIn = true;
let shouldRunOut = true; let shouldRunOut = true;
let conditionObject = { const conditionObject = {
get conditionIn() { get conditionIn() {
return shouldRunIn; return shouldRunIn;
}, },

@ -30,7 +30,7 @@ export default {
// Create a condition object that can be toggled // Create a condition object that can be toggled
let shouldRun = true; let shouldRun = true;
let conditionObject = { const conditionObject = {
get condition() { get condition() {
return shouldRun; return shouldRun;
} }
@ -40,7 +40,7 @@ export default {
component.visible = false; component.visible = false;
raf.tick(400); raf.tick(400);
assert.htmlEqual(target.innerHTML, ''); assert.htmlEqual(target.innerHTML, '');
// in: true, out: false // in: true, out: false
shouldRun = true; shouldRun = true;
component.visible = true; component.visible = true;

Loading…
Cancel
Save