0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

chore: Migrate html-escape-complex.test.js tonode:test (#10041)

This commit is contained in:
Mohamed 2024-02-08 12:21:21 +02:00 committed by GitHub
parent 3c0e2c728e
commit d65332af89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
import { expect } from 'chai';
import assert from 'node:assert/strict';
import { after, describe, before, it } from 'node:test';
import * as cheerio from 'cheerio';
import { loadFixture } from './test-utils.js';
@ -29,7 +30,7 @@ describe('HTML Escape (Complex)', () => {
for (const char of 'abcdef'.split('')) {
const attrIn = $in('#' + char).attr('data-attr');
const attrOut = $out('#' + char).attr('data-attr');
expect(attrOut).to.equal(attrIn);
assert.equal(attrOut, attrIn);
}
});
@ -39,12 +40,12 @@ describe('HTML Escape (Complex)', () => {
const scriptIn = $a('script');
const scriptOut = $b('script');
expect(scriptOut.text()).to.equal(scriptIn.text());
assert.equal(scriptOut.text(), scriptIn.text());
});
it('matches the entire source file', async () => {
// Ignore doctype insertion
expect(output.replace('<!DOCTYPE html>', '')).to.equal(input);
assert.equal(output.replace('<!DOCTYPE html>', ''), input);
});
});
});