Turning the tests back on (#2519)

This commit is contained in:
Samuel Hawksby-Robinson 2022-02-03 20:37:41 +00:00 committed by GitHub
parent 62a0439234
commit bd3f0f436b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 0 additions and 41 deletions

View File

@ -4,7 +4,6 @@
// docker run -e POSTGRES_HOST_AUTH_METHOD=trust -d -p 5432:5432 postgres:9.6-alpine
//
//nolint // TODO Fix test
package mailserver
import (
@ -23,8 +22,6 @@ import (
)
func TestMailServerPostgresDBSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MailServerPostgresDBSuite))
}

View File

@ -4,7 +4,6 @@
// docker run -e POSTGRES_HOST_AUTH_METHOD=trust -d -p 5432:5432 postgres:9.6-alpine
//
//nolint // TODO Fix test
package protocol
import (
@ -30,8 +29,6 @@ import (
)
func TestMessengerAnonMetricsSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerAnonMetricsSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -31,8 +30,6 @@ import (
)
func TestMessengerCommunitiesSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerCommunitiesSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -18,8 +17,6 @@ import (
)
func TestMessengerActivityCenterMessageSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerActivityCenterMessageSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -18,8 +17,6 @@ import (
)
func TestMessengerContactUpdateSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerContactUpdateSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -19,8 +18,6 @@ import (
)
func TestMessengerDeleteMessageSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerDeleteMessageSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -20,8 +19,6 @@ import (
)
func TestMessengerEditMessageSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerEditMessageSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -19,8 +18,6 @@ import (
)
func TestMessengerEmojiSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerEmojiSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -25,8 +24,6 @@ import (
)
func TestMessengerProfilePictureHandlerSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerProfilePictureHandlerSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -23,8 +22,6 @@ const statusChatID = "status"
const removedChatID = "deactivated"
func TestMessengerInstallationSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerInstallationSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -18,8 +17,6 @@ import (
)
func TestMessengerPinMessageSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerPinMessageSuite))
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -45,14 +44,10 @@ const (
)
func TestMessengerSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerSuite))
}
func TestMessengerWithDataSyncEnabledSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, &MessengerSuite{enableDataSync: true})
}

View File

@ -1,4 +1,3 @@
//nolint // TODO Fix test
package protocol
import (
@ -31,8 +30,6 @@ const (
)
func TestMessengerPushNotificationSuite(t *testing.T) {
// TODO Fix test
t.Skip("Skipped")
suite.Run(t, new(MessengerPushNotificationSuite))
}