Skip to content

Commit

Permalink
allow wasm to compile with ginkgo present (#1311)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-lawrence committed Nov 30, 2023
1 parent 123e1d5 commit b2e5bc5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/output_interceptor_wasm.go
@@ -0,0 +1,7 @@
//go:build wasm

package internal

func NewOutputInterceptor() OutputInterceptor {
return &NoopOutputInterceptor{}
}
10 changes: 10 additions & 0 deletions internal/progress_report_wasm.go
@@ -0,0 +1,10 @@
//go:build wasm

package internal

import (
"os"
"syscall"
)

var PROGRESS_SIGNALS = []os.Signal{syscall.SIGUSR1}

0 comments on commit b2e5bc5

Please sign in to comment.