We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39a4633 commit 695d923Copy full SHA for 695d923
1 file changed
Desktop/Tasks/BackendTaskRepository.cs
@@ -16,6 +16,8 @@ public BackendTaskRepository(HttpClient httpClient)
16
17
public async Task<IReadOnlyList<Task>> All()
18
{
19
+ throw new InvalidOperationException("This should fail on e2e test");
20
+
21
var getResult = await httpClient.GetAsync("/project/tasks/");
22
23
var backendTasks =
0 commit comments