1import { generateTokenizationTests } from 'parse5-test-utils/utils/generate-tokenization-tests.js';
2import { ParserFeedbackSimulator } from '../lib/parser-feedback-simulator.js';
3
4const feedbackPath = new URL('../../../test/data/parser-feedback', import.meta.url);
5
6generateTokenizationTests(
7    'ParserFeedbackSimulator',
8    feedbackPath.pathname,
9    (handler) => new ParserFeedbackSimulator({}, handler).tokenizer
10);
11