1//go:build !race
2// +build !race
3
4package goja
5
6import "testing"
7
8func (ctx *tc39TestCtx) runTest(name string, f func(t *testing.T)) {
9	ctx.t.Run(name, func(t *testing.T) {
10		t.Parallel()
11		f(t)
12	})
13}
14
15func (ctx *tc39TestCtx) flush() {
16}
17