From c7e7ea6ad15ecccbb44e3a3ad512cbde5e9163ae Mon Sep 17 00:00:00 2001 From: pushkin Date: Tue, 3 Nov 2020 07:11:01 +0100 Subject: [PATCH] lint --- test/runtime/samples/action-update-this/_config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/runtime/samples/action-update-this/_config.js b/test/runtime/samples/action-update-this/_config.js index 5183a6679e..8d9f278dd8 100644 --- a/test/runtime/samples/action-update-this/_config.js +++ b/test/runtime/samples/action-update-this/_config.js @@ -1,15 +1,15 @@ export default { - props: { text: "first" }, + props: { text: 'first' }, test({ assert, target, component }) { - assert.htmlEqual(target.innerHTML, ""); - component.text = "second"; - assert.htmlEqual(target.innerHTML, ""); + assert.htmlEqual(target.innerHTML, ''); + component.text = 'second'; + assert.htmlEqual(target.innerHTML, ''); let last_text; - component.text = "third"; + component.text = 'third'; component.on_destroy = (text) => { last_text = text; }; component.$destroy(); - assert.equal(last_text, "third"); - }, + assert.equal(last_text, 'third'); + } };