summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar tony-sull <tony-sull@users.noreply.github.com> 2022-04-29 21:16:50 +0000
committerGravatar github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-04-29 21:16:50 +0000
commit527a3634d4a7686544c95e984c1f82cb96c9f88a (patch)
tree48581cdbc4035ddac251ac8ac6e4a669d50915aa
parentd25dc4c4484340a794eaac1e6d18cc5aa2071524 (diff)
downloadastro-527a3634d4a7686544c95e984c1f82cb96c9f88a.tar.gz
astro-527a3634d4a7686544c95e984c1f82cb96c9f88a.tar.zst
astro-527a3634d4a7686544c95e984c1f82cb96c9f88a.zip
[ci] format
-rw-r--r--packages/astro/test/astro-directives.test.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/test/astro-directives.test.js b/packages/astro/test/astro-directives.test.js
index 0a262a5e4..161063e97 100644
--- a/packages/astro/test/astro-directives.test.js
+++ b/packages/astro/test/astro-directives.test.js
@@ -26,7 +26,9 @@ describe('Directives', async () => {
expect($('style').toString()).to.include('--bg: white;');
expect($('style').toString()).to.include('--fg: black;');
- const scopedClass = $('html').attr('class').split(' ')
+ const scopedClass = $('html')
+ .attr('class')
+ .split(' ')
.find((name) => /^astro-[A-Za-z0-9-]+/.test(name));
expect($('style').toString().replace(/\s+/g, '')).to.equal(