We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0edeaf6 commit 1ac26d3Copy full SHA for 1ac26d3
main_test.go
@@ -728,6 +728,7 @@ func TestWasmFuncOf(t *testing.T) {
728
729
// Test //go:wasmexport in JavaScript (using NodeJS).
730
func TestWasmExportJS(t *testing.T) {
731
+ t.Parallel()
732
type testCase struct {
733
name string
734
buildMode string
@@ -738,7 +739,9 @@ func TestWasmExportJS(t *testing.T) {
738
739
{name: "c-shared", buildMode: "c-shared"},
740
}
741
for _, tc := range tests {
742
+ tc := tc
743
t.Run(tc.name, func(t *testing.T) {
744
745
// Build the wasm binary.
746
tmpdir := t.TempDir()
747
options := optionsFromTarget("wasm", sema)
0 commit comments