[ci] yarn format
This commit is contained in:
parent
24dce41c4c
commit
cd684eb95e
1 changed files with 4 additions and 1 deletions
|
@ -50,7 +50,10 @@ Attributes('Passes namespaced attributes to components as expected', async ({ ru
|
||||||
assert.ok(!result.error, `build error: ${result.error}`);
|
assert.ok(!result.error, `build error: ${result.error}`);
|
||||||
|
|
||||||
const $ = doc(result.contents);
|
const $ = doc(result.contents);
|
||||||
assert.equal($('span').attr('on:click'), Function.prototype.toString.call((event) => console.log(event)));
|
assert.equal(
|
||||||
|
$('span').attr('on:click'),
|
||||||
|
Function.prototype.toString.call((event) => console.log(event))
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
Attributes.run();
|
Attributes.run();
|
||||||
|
|
Loading…
Reference in a new issue