mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
12 lines
232 B
Go
12 lines
232 B
Go
package server
|
|
|
|
import (
|
|
"github.com/stretchr/testify/require"
|
|
"testing"
|
|
)
|
|
|
|
func newTestWebPushStore(t *testing.T, filename string) *webPushStore {
|
|
webPush, err := newWebPushStore(filename)
|
|
require.Nil(t, err)
|
|
return webPush
|
|
}
|