Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make sure we instantiate non-main modules #93

Merged
merged 11 commits into from
Jan 30, 2025
Prev Previous commit
Next Next commit
add a zero
  • Loading branch information
mhmd-azeez committed Jan 23, 2025
commit 439953ce9fb2bfaaa3bf8560a3941f62b0e8ca19
4 changes: 2 additions & 2 deletions extism_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ func TestCompiledModuleMultipleInstances(t *testing.T) {
}

var wg sync.WaitGroup
numInstances := 30
numInstances := 300

// Create and test instances in parallel
for i := 0; i < numInstances; i++ {
Expand Down Expand Up @@ -1170,7 +1170,7 @@ func TestCompiledModuleMultipleInstances(t *testing.T) {

func TestMultipleCallsOutputParallel(t *testing.T) {
manifest := manifest("count_vowels.wasm")
numInstances := 30
numInstances := 300

var wg sync.WaitGroup

Expand Down
Loading