@@ -32,7 +32,7 @@ public LanguageServerConfigurationTests(ITestOutputHelper outputHelper) : base(n
32
32
{
33
33
}
34
34
35
- [ RetryFact ]
35
+ [ Fact ]
36
36
public async Task Should_Not_Support_Configuration_It_Not_Configured ( )
37
37
{
38
38
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , o => { } ) ;
@@ -46,7 +46,7 @@ public async Task Should_Not_Support_Configuration_It_Not_Configured()
46
46
server . Configuration . AsEnumerable ( ) . Should ( ) . BeEmpty ( ) ;
47
47
}
48
48
49
- [ RetryFact ]
49
+ [ Fact ]
50
50
public async Task Should_Allow_Null_Response ( )
51
51
{
52
52
var ( client , server ) = await Initialize (
@@ -60,7 +60,7 @@ public async Task Should_Allow_Null_Response()
60
60
a . Should ( ) . NotThrow ( ) ;
61
61
}
62
62
63
- [ RetryFact ]
63
+ [ Fact ]
64
64
public async Task Should_Update_Configuration_On_Server ( )
65
65
{
66
66
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -75,7 +75,7 @@ public async Task Should_Update_Configuration_On_Server()
75
75
server . Configuration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
76
76
}
77
77
78
- [ RetryFact ]
78
+ [ Fact ]
79
79
public async Task Should_Update_Configuration_On_Server_After_Starting ( )
80
80
{
81
81
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => { } ) ;
@@ -91,7 +91,7 @@ public async Task Should_Update_Configuration_On_Server_After_Starting()
91
91
server . Configuration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
92
92
}
93
93
94
- [ RetryFact ]
94
+ [ Fact ]
95
95
public async Task Should_Update_Configuration_Should_Stop_Watching_Sections ( )
96
96
{
97
97
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -113,7 +113,7 @@ public async Task Should_Update_Configuration_Should_Stop_Watching_Sections()
113
113
server . Configuration [ "othersection:value" ] . Should ( ) . BeNull ( ) ;
114
114
}
115
115
116
- [ RetryFact ]
116
+ [ Fact ]
117
117
public async Task Should_Update_Scoped_Configuration ( )
118
118
{
119
119
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -135,7 +135,7 @@ public async Task Should_Update_Scoped_Configuration()
135
135
scopedConfiguration [ "othersection:value" ] . Should ( ) . Be ( "scopedkey" ) ;
136
136
}
137
137
138
- [ RetryFact ]
138
+ [ Fact ]
139
139
public async Task Should_Fallback_To_Original_Configuration ( )
140
140
{
141
141
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -167,7 +167,7 @@ public async Task Should_Fallback_To_Original_Configuration()
167
167
scopedConfiguration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
168
168
}
169
169
170
- [ RetryFact ]
170
+ [ Fact ]
171
171
public async Task Should_Only_Update_Configuration_Items_That_Are_Defined ( )
172
172
{
173
173
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -185,7 +185,7 @@ public async Task Should_Only_Update_Configuration_Items_That_Are_Defined()
185
185
server . Configuration [ "notmysection:key" ] . Should ( ) . BeNull ( ) ;
186
186
}
187
187
188
- [ RetryFact ]
188
+ [ Fact ]
189
189
public async Task Should_Support_Configuration_Binding ( )
190
190
{
191
191
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -209,7 +209,7 @@ public async Task Should_Support_Configuration_Binding()
209
209
data . Port . Should ( ) . Be ( 80 ) ;
210
210
}
211
211
212
- [ RetryFact ]
212
+ [ Fact ]
213
213
public async Task Should_Support_Options ( )
214
214
{
215
215
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => {
@@ -234,7 +234,7 @@ public async Task Should_Support_Options()
234
234
options . Value . Port . Should ( ) . Be ( 443 ) ;
235
235
}
236
236
237
- [ RetryFact ]
237
+ [ Fact ]
238
238
public async Task Should_Support_Options_Monitor ( )
239
239
{
240
240
var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => {
0 commit comments