Skip to content

Commit f2092d5

Browse files
Update URLs in test configuration files and tests
1 parent 26e0887 commit f2092d5

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

src/Atata.Configuration.Json.Tests/Configs/Chrome+NUnit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"driverExecutableFileName": "chromedriver.exe"
1010
}
1111
},
12-
"baseUrl": "https://atata-framework.github.io/atata-sample-app/#!/",
12+
"baseUrl": "https://demo.atata.io/",
1313
"culture": "en-US",
1414
"useNUnitTestName": true,
1515
"logNUnitError": true,

src/Atata.Configuration.Json.Tests/Configs/CustomSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"arguments": [ "disable-extensions", "start-maximized" ]
66
}
77
},
8-
"baseUrl": "https://atata-framework.github.io/atata-sample-app/#!/",
8+
"baseUrl": "https://demo.atata.io/",
99
"useNUnitTestName": true,
1010
"logNUnitError": true,
1111
"takeScreenshotOnNUnitError": true,

src/Atata.Configuration.Json.Tests/Configs/CustomSettingsOverride.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"arguments": [ "disable-extensions" ]
66
}
77
},
8-
"baseUrl": "https://atata-framework.github.io/atata-sample-app/#!/override",
8+
"baseUrl": "https://demo.atata.io/override",
99
"stringProperty": "str2",
1010
"stringArrayValues": [ "str4" ],
1111
"stringListValues": [ "str4" ],

src/Atata.Configuration.Json.Tests/Configs/CustomSettingsOverride2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"arguments": [ "disable-extensions" ]
66
}
77
},
8-
"baseUrl": "https://atata-framework.github.io/atata-sample-app/#!/override2",
8+
"baseUrl": "https://demo.atata.io/override2",
99
"stringProperty": "str3",
1010
"stringArrayValues": [ "str5" ],
1111
"stringListValues": [ "str5" ],

src/Atata.Configuration.Json.Tests/CustomJsonConfigTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ public void CustomJsonConfig_Default()
2020

2121
JsonConfig.Current.Should().BeNull();
2222

23-
config.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
23+
config.BaseUrl.Should().Be("https://demo.atata.io/");
2424

2525
builder.BuildingContext.DriverFactories.Should().HaveCount(1);
26-
builder.BuildingContext.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
26+
builder.BuildingContext.BaseUrl.Should().Be("https://demo.atata.io/");
2727
}
2828

2929
[Test]
@@ -37,12 +37,12 @@ public void CustomJsonConfig_Custom()
3737

3838
CustomJsonConfig.Current.Should().BeNull();
3939

40-
config.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
40+
config.BaseUrl.Should().Be("https://demo.atata.io/");
4141
config.IntProperty.Should().Be(5);
4242
config.StringArrayValues.Should().Equal(new[] { "str1", "str2", "str3" });
4343

4444
builder.BuildingContext.DriverFactories.Should().HaveCount(1);
45-
builder.BuildingContext.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
45+
builder.BuildingContext.BaseUrl.Should().Be("https://demo.atata.io/");
4646
}
4747
}
4848
}

src/Atata.Configuration.Json.Tests/CustomSettingsTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public void CustomSettings()
1313
AtataContext.Configure().
1414
ApplyJsonConfig<CustomJsonConfig>(@"Configs/CustomSettings.json");
1515

16-
CustomJsonConfig.Current.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
16+
CustomJsonConfig.Current.BaseUrl.Should().Be("https://demo.atata.io/");
1717
CustomJsonConfig.Current.IntProperty.Should().Be(5);
1818
CustomJsonConfig.Current.StringProperty.Should().Be("str");
1919
CustomJsonConfig.Current.BoolProperty.Should().Be(true);
@@ -46,7 +46,7 @@ public void CustomSettings_Merged()
4646
ApplyJsonConfig<CustomJsonConfig>(@"Configs/CustomSettings.json").
4747
ApplyJsonConfig<CustomJsonConfig>(@"Configs/CustomSettingsOverride.json");
4848

49-
CustomJsonConfig.Current.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/override");
49+
CustomJsonConfig.Current.BaseUrl.Should().Be("https://demo.atata.io/override");
5050
CustomJsonConfig.Current.IntProperty.Should().Be(5);
5151
CustomJsonConfig.Current.StringProperty.Should().Be("str2");
5252
CustomJsonConfig.Current.BoolProperty.Should().Be(true);
@@ -90,8 +90,8 @@ public void CustomSettings_GlobalThenCurrent()
9090
ApplyJsonConfig<CustomJsonConfig>(@"Configs/CustomSettingsOverride.json").
9191
Build();
9292

93-
CustomJsonConfig.Global.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
94-
CustomJsonConfig.Current.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/override");
93+
CustomJsonConfig.Global.BaseUrl.Should().Be("https://demo.atata.io/");
94+
CustomJsonConfig.Current.BaseUrl.Should().Be("https://demo.atata.io/override");
9595

9696
CustomJsonConfig.Global.StringProperty.Should().Be("str");
9797
CustomJsonConfig.Current.StringProperty.Should().Be("str2");
@@ -113,21 +113,21 @@ public void CustomSettings_GlobalThenCurrent()
113113

114114
try
115115
{
116-
CustomJsonConfig.Global.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
116+
CustomJsonConfig.Global.BaseUrl.Should().Be("https://demo.atata.io/");
117117

118-
CustomJsonConfig.Current.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/override");
118+
CustomJsonConfig.Current.BaseUrl.Should().Be("https://demo.atata.io/override");
119119
CustomJsonConfig.Current.StringProperty.Should().Be("str2");
120120
CustomJsonConfig.Current.StringListValues.Should().Equal(new[] { "str1", "str2", "str3", "str4" });
121121

122-
parallelCustomJsonConfig.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/override2");
122+
parallelCustomJsonConfig.BaseUrl.Should().Be("https://demo.atata.io/override2");
123123
parallelCustomJsonConfig.StringProperty.Should().Be("str3");
124124
parallelCustomJsonConfig.StringListValues.Should().Equal(new[] { "str1", "str2", "str3", "str5" });
125125

126126
AtataContext.Current.CleanUp();
127127

128128
CustomJsonConfig.Current.Should().BeNull();
129129

130-
CustomJsonConfig.Global.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
130+
CustomJsonConfig.Global.BaseUrl.Should().Be("https://demo.atata.io/");
131131
CustomJsonConfig.Global.StringProperty.Should().Be("str");
132132
CustomJsonConfig.Global.StringListValues.Should().Equal(new[] { "str1", "str2", "str3" });
133133
}

src/Atata.Configuration.Json.Tests/GeneralSettingsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public void GeneralSettings_NUnit()
1515

1616
var context = builder.BuildingContext;
1717

18-
context.BaseUrl.Should().Be("https://atata-framework.github.io/atata-sample-app/#!/");
18+
context.BaseUrl.Should().Be("https://demo.atata.io/");
1919

2020
context.Culture.Name.Should().Be("en-US");
2121

0 commit comments

Comments
 (0)