You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/parser-modern/test.ts

61 lines
1.4 KiB

import * as fs from 'node:fs';
import { assert, it } from 'vitest';
import { parse } from 'svelte/compiler';
import { try_load_json } from '../helpers.js';
import { suite, type BaseTest } from '../suite.js';
interface ParserTest extends BaseTest {}
const { test, run } = suite<ParserTest>(async (config, cwd) => {
const input = fs
.readFileSync(`${cwd}/input.svelte`, 'utf-8')
.replace(/\s+$/, '')
.replace(/\r/g, '');
const actual = JSON.parse(
JSON.stringify(
parse(input, {
modern: true,
loose: cwd.split('/').pop()!.startsWith('loose-')
})
)
);
delete actual.comments;
// run `UPDATE_SNAPSHOTS=true pnpm test parser` to update parser tests
if (process.env.UPDATE_SNAPSHOTS) {
fs.writeFileSync(`${cwd}/output.json`, JSON.stringify(actual, null, '\t'));
} else {
fs.writeFileSync(`${cwd}/_actual.json`, JSON.stringify(actual, null, '\t'));
const expected = try_load_json(`${cwd}/output.json`);
assert.deepEqual(actual, expected);
}
});
export { test };
await run(__dirname);
it('Strips BOM from the input', () => {
const input = '\uFEFF<div></div>';
const actual = parse(input, { modern: true });
assert.deepEqual(JSON.parse(JSON.stringify(actual.fragment)), {
type: 'Fragment',
nodes: [
{
attributes: [],
end: 11,
fragment: {
nodes: [],
type: 'Fragment'
},
name: 'div',
start: 0,
type: 'RegularElement'
}
]
});
});