mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
21 lines
413 B
Go
21 lines
413 B
Go
package jstest
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/sagernet/sing-box/script/modules/require"
|
|
)
|
|
|
|
//go:embed assert.js
|
|
var assertJS []byte
|
|
|
|
func NewRegistry() *require.Registry {
|
|
return require.NewRegistry(require.WithFsEnable(true), require.WithLoader(func(path string) ([]byte, error) {
|
|
switch path {
|
|
case "assert.js":
|
|
return assertJS, nil
|
|
default:
|
|
return require.DefaultSourceLoader(path)
|
|
}
|
|
}))
|
|
}
|