summaryrefslogtreecommitdiff
path: root/tools/wpt/testharnessreport.js
blob: 13c8ef683bbb1e42b86f3408dd04e10aeb421913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
window.add_result_callback(({ message, name, stack, status }) => {
  Deno.writeAllSync(
    Deno.stderr,
    new TextEncoder().encode(
      `${JSON.stringify({ name, status, message, stack })}\n`,
    ),
  );
});

window.add_completion_callback((tests, harnessStatus) => {
  Deno.exit(0);
});