diff --git a/packages/astro/test/0-css.test.js b/packages/astro/test/0-css.nodetest.js similarity index 63% rename from packages/astro/test/0-css.test.js rename to packages/astro/test/0-css.nodetest.js index c8c5af6d8f..4cc1d18645 100644 --- a/packages/astro/test/0-css.test.js +++ b/packages/astro/test/0-css.nodetest.js @@ -4,7 +4,8 @@ * rather than trying to start up when all other threads are busy and having to fight for resources */ -import { expect } from 'chai'; +import assert from 'node:assert/strict'; +import { describe, before, it, after } from 'node:test'; import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; @@ -22,18 +23,22 @@ describe('CSS', function () { let html; let bundledCSS; - before(async () => { - this.timeout(45000); // test needs a little more time in CI - await fixture.build(); + before( + async () => { + await fixture.build(); - // get bundled CSS (will be hashed, hence DOM query) - html = await fixture.readFile('/index.html'); - $ = cheerio.load(html); - const bundledCSSHREF = $('link[rel=stylesheet][href^=/_astro/]').attr('href'); - bundledCSS = (await fixture.readFile(bundledCSSHREF.replace(/^\/?/, '/'))) - .replace(/\s/g, '') - .replace('/n', ''); - }); + // get bundled CSS (will be hashed, hence DOM query) + html = await fixture.readFile('/index.html'); + $ = cheerio.load(html); + const bundledCSSHREF = $('link[rel=stylesheet][href^=/_astro/]').attr('href'); + bundledCSS = (await fixture.readFile(bundledCSSHREF.replace(/^\/?/, '/'))) + .replace(/\s/g, '') + .replace('/n', ''); + }, + { + timeout: 45000, + } + ); describe('Astro Styles', () => { it('HTML and CSS scoped correctly', async () => { @@ -53,24 +58,24 @@ describe('CSS', function () { } // 1. check HTML - expect(el1.attr('class')).to.equal(`blue`); - expect(el2.attr('class')).to.equal(`visible`); + assert.equal(el1.attr('class'), `blue`); + assert.equal(el2.attr('class'), `visible`); // 2. check CSS const expected = `.blue[${scopedAttribute}],.color\\:blue[${scopedAttribute}]{color:#b0e0e6}.visible[${scopedAttribute}]{display:block}`; - expect(bundledCSS).to.include(expected); + assert.equal(bundledCSS.includes(expected), true); }); it('Generated link tags are void elements', async () => { - expect(html).to.not.include(''); + assert.notEqual(html.includes(''), true); }); it('No