download-test262.mjs
generate-test262-whitelist.mjs
get-test262-fixtures.d.mts
get-test262-fixtures.mjs
run-test262-cli.mjs
run-test262.d.mts
run-test262.mjs
shared.mjs
test262-commit-hash
unsupported-features.txt
whitelist.txt
ast-alignment-test.ts
parser-tests.ts
import * as t from 'node:assert/strict';
import { describe, it } from 'vitest';
import * as meriyah from '../../src/meriyah';
import runTest from '../../test262/run-test262.mjs';
describe('Test262', function () {
  it(
    'Should pass tests',
    async () => {
      const exitCode = await runTest(meriyah);
      t.equal(exitCode, 0);
    },
    Infinity,
  );
});
