mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 09:31:18 +01:00
13 lines
232 B
Go
13 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
|
||
|
}
|