This commit is contained in:
Krzysztof Dryś 2024-06-20 07:47:37 +02:00
parent e34dc3280c
commit 62ee7fb4c9

View File

@ -23,15 +23,15 @@ func TestDelayedCommunication(t *testing.T) {
t.Fatalf("Failed to configure browser extension: %v", err)
}
t.Run("BE sleeps before sending message", func(t *testing.T) {
t.Run("BE sleeps before sending a message", func(t *testing.T) {
deviceID := getDeviceID()
testPairing(t, deviceID, resp, time.Minute, 0)
})
t.Run("Mobile sleeps before sending message", func(t *testing.T) {
t.Run("Mobile sleeps before sending a message", func(t *testing.T) {
deviceID := getDeviceID()
testPairing(t, deviceID, resp, 0, time.Minute)
})
t.Run("Both sleep before sending message", func(t *testing.T) {
t.Run("Both sleep before sending a message", func(t *testing.T) {
deviceID := getDeviceID()
testPairing(t, deviceID, resp, time.Minute, time.Minute)
})