Skip to content

Commit 1c40e71

Browse files
author
Piotr Gulbinowicz
committed
fix pwa tests
1 parent 80ecab6 commit 1c40e71

File tree

5 files changed

+0
-12
lines changed

5 files changed

+0
-12
lines changed

pwa/test/integration/env_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
)
77

88
func TestEnvIsSet(t *testing.T) {
9-
t.Parallel()
109
if os.Getenv("GOAPP_URL") == "" {
1110
t.Fatal("GOAPP_URL not set")
1211
}

pwa/test/integration/flush_create_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
)
77

88
func TestCreateFlush(t *testing.T) {
9-
t.Parallel()
109
p, b, err := CreateFlush(true, "flush_create_test", "flush_create_test", time.Now())
1110
defer b.MustClose()
1211
defer p.MustClose()

pwa/test/integration/page_loading_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ func TestLoadPages(t *testing.T) {
1818
}
1919

2020
func TestCheckForErrorDivId(t *testing.T) {
21-
t.Parallel()
2221
for _, url := range Endpoints() {
2322
u := launcher.New().Bin(LauncherSystemBrowser()).MustLaunch()
2423
b := rod.New().ControlURL(u).MustConnect()

pwa/test/integration/registry_test.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ func TestRegister(t *testing.T) {
1717
}
1818

1919
func TestRegisterBadUsernameChars(t *testing.T) {
20-
t.Parallel()
2120
p, b := Register("user_ęśąćź", "pass_registry_test", "pass_registry_test")
2221
defer b.MustClose()
2322
defer p.MustClose()
@@ -27,7 +26,6 @@ func TestRegisterBadUsernameChars(t *testing.T) {
2726
}
2827

2928
func TestRegisterEmptyUsername(t *testing.T) {
30-
t.Parallel()
3129
p, b := Register("", "pass_registry_test", "pass_registry_test")
3230
defer b.MustClose()
3331
defer p.MustClose()
@@ -37,7 +35,6 @@ func TestRegisterEmptyUsername(t *testing.T) {
3735
}
3836

3937
func TestRegisterShortPass(t *testing.T) {
40-
t.Parallel()
4138
p, b := Register("user_registry_test2", "asd", "asd")
4239
defer b.MustClose()
4340
defer p.MustClose()
@@ -47,7 +44,6 @@ func TestRegisterShortPass(t *testing.T) {
4744
}
4845

4946
func TestRegisterEmptyPass(t *testing.T) {
50-
t.Parallel()
5147
p, b := Register("user_registry_test3", "", "")
5248
defer b.MustClose()
5349
defer p.MustClose()
@@ -57,7 +53,6 @@ func TestRegisterEmptyPass(t *testing.T) {
5753
}
5854

5955
func TestRegisterPasswordsDiffer(t *testing.T) {
60-
t.Parallel()
6156
p, b := Register("user_registry_test3",
6257
"asdasdasdasdasddasd", "qweqweqweqweqwe")
6358
defer b.MustClose()
@@ -68,7 +63,6 @@ func TestRegisterPasswordsDiffer(t *testing.T) {
6863
}
6964

7065
func TestRegisterUsernameTaken(t *testing.T) {
71-
t.Parallel()
7266
p, b := Register("user_registry_test3", "pass_registry_test3",
7367
"pass_registry_test3")
7468
p2, b2 := Register("user_registry_test3", "pass_registry_test3",
@@ -83,7 +77,6 @@ func TestRegisterUsernameTaken(t *testing.T) {
8377
}
8478

8579
func TestRegisterSameCredsTwoTimes(t *testing.T) {
86-
t.Parallel()
8780
p, b := RegisterDoubleClickButton("asd", "asd",
8881
"asd")
8982
defer b.MustClose()

pwa/test/integration/settings_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
)
1010

1111
func TestCheckPhoneUsedAsDefault(t *testing.T) {
12-
t.Parallel()
1312
p, b := RegisterAndGoToSettings(
1413
"user_settings_test",
1514
"pass_settings_test",
@@ -55,7 +54,6 @@ func TestChangePassword(t *testing.T) {
5554
}
5655

5756
func TestAccountRemoval(t *testing.T) {
58-
t.Parallel()
5957
p, b := RegisterAndGoToSettings(
6058
"user_settings_test3",
6159
"pass_settings_test3",

0 commit comments

Comments
 (0)