diff options
Diffstat (limited to 'packages/astro/test/astro-class-list.test.js')
-rw-r--r-- | packages/astro/test/astro-class-list.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/test/astro-class-list.test.js b/packages/astro/test/astro-class-list.test.js index 904466123..caee0a686 100644 --- a/packages/astro/test/astro-class-list.test.js +++ b/packages/astro/test/astro-class-list.test.js @@ -23,7 +23,7 @@ describe('Class List', async () => { assert.equal( $('[class="hello goodbye hello world hello friend"]').length, 1, - '[class="hello goodbye hello world hello friend"]' + '[class="hello goodbye hello world hello friend"]', ); assert.equal($('[class="foo baz"]').length, 1, '[class="foo baz"]'); assert.equal($('span:not([class])').length, 1, 'span:not([class])'); @@ -43,7 +43,7 @@ describe('Class List', async () => { assert.equal( $('[class="hello goodbye hello world hello friend"]').length, 1, - '[class="hello goodbye hello world hello friend"]' + '[class="hello goodbye hello world hello friend"]', ); assert.equal($('[class="foo baz"]').length, 1, '[class="foo baz"]'); assert.equal($('span:not([class])').length, 1, 'span:not([class])'); @@ -55,7 +55,7 @@ describe('Class List', async () => { assert.equal($('[class="test set"]').text(), 'test set'); assert.equal( $('[class="hello goodbye hello world hello friend"]').text(), - 'hello goodbye hello world hello friend' + 'hello goodbye hello world hello friend', ); assert.equal($('[class="foo baz"]').text(), 'foo baz'); assert.equal($('span:not([class])').text(), ''); |