Skip to content

Commit

Permalink
appease lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lilnasy committed Apr 10, 2024
1 parent 71cf4d1 commit aa9e33f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/test/astro-slots.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ describe('Slots', () => {
it("Arguments can be passed to named slots with Astro.slots.render()", async () => {
const html = await fixture.readFile('/slotted-named-functions/index.html');
const $ = cheerio.load(html);
const before = $("div#before");
const [ beforeDiv ] = before.children("div")
const befor = $("div#before");
const [ beforeDiv ] = befor.children("div")
assert.deepEqual(beforeDiv.firstChild.data, "Test Content BEFORE")
const after = $("div#after");
const [ afterDiv ] = after.children("div");
Expand Down

0 comments on commit aa9e33f

Please sign in to comment.