We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90aef81 commit 99aa273Copy full SHA for 99aa273
1 file changed
src/TgSharp.Tests.NUnit/Test.cs
@@ -15,6 +15,13 @@ public void Init()
15
base.Init(o => Assert.IsNotNull(o), b => Assert.IsTrue(b));
16
}
17
18
+ [SetUp]
19
+ public void DummyWait()
20
+ {
21
+ // if we don't wait a bit between tests, they could hang...
22
+ System.Threading.Thread.Sleep(TimeSpan.FromSeconds(1.0));
23
+ }
24
+
25
[Test]
26
[Ignore("Only run again when you want a new CodeToAuthenticate value in your app.config")]
27
public async override Task AuthUser()
0 commit comments