[ci] yarn format

This commit is contained in:
matthewp 2021-08-27 14:45:59 +00:00 committed by GitHub Actions
parent 24dce41c4c
commit cd684eb95e

View file

@ -50,7 +50,10 @@ Attributes('Passes namespaced attributes to components as expected', async ({ ru
assert.ok(!result.error, `build error: ${result.error}`);
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();