From c9cf8a93fb26a7251d3902ca117665de35f9cf37 Mon Sep 17 00:00:00 2001 From: Ming-jun Lu <40516784+mingjunlu@users.noreply.github.com> Date: Thu, 8 Feb 2024 18:18:51 +0800 Subject: [PATCH] chore: migrate `static-build-code-component.test.js` to `node:test` (#10045) --- ...onent.test.js => static-build-code-component.nodetest.js} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename packages/astro/test/{static-build-code-component.test.js => static-build-code-component.nodetest.js} (75%) diff --git a/packages/astro/test/static-build-code-component.test.js b/packages/astro/test/static-build-code-component.nodetest.js similarity index 75% rename from packages/astro/test/static-build-code-component.test.js rename to packages/astro/test/static-build-code-component.nodetest.js index 9a26f06750..4bd4ca1a42 100644 --- a/packages/astro/test/static-build-code-component.test.js +++ b/packages/astro/test/static-build-code-component.nodetest.js @@ -1,5 +1,6 @@ -import { expect } from 'chai'; import * as cheerio from 'cheerio'; +import assert from 'node:assert/strict'; +import { before, describe, it } from 'node:test'; import { loadFixture } from './test-utils.js'; describe('Code component inside static build', () => { @@ -15,6 +16,6 @@ describe('Code component inside static build', () => { it('Is able to build successfully', async () => { const html = await fixture.readFile('/index.html'); const $ = cheerio.load(html); - expect($('pre').length, 1, 'pre tag loaded'); + assert.equal($('pre').length, 1, 'pre tag loaded'); }); });