File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ suite "Test with HTML reference" {
22
22
test "it works" {
23
23
<button as button />
24
24
|> Test .Html .start
25
- |> ( context : Test .Context ( Dom .Element )) { button != Maybe .Nothing }
25
+ |> Test .Context . map (( item : Dom .Element ) { button != Maybe .Nothing })
26
26
}
27
27
}
28
28
@@ -36,6 +36,6 @@ suite "Test with Component reference" {
36
36
test "it works" {
37
37
<TestReference as button />
38
38
|> Test .Html .start
39
- |> ( context : Test .Context ( Dom .Element )) { button != Maybe .Nothing }
39
+ |> Test .Context . map (( item : Dom .Element ) { button != Maybe .Nothing })
40
40
}
41
41
}
Original file line number Diff line number Diff line change @@ -210,7 +210,6 @@ class TestRunner {
210
210
}
211
211
}
212
212
} catch ( error ) {
213
- console . log ( error )
214
213
// An error occurred while trying to run a test; this is different from the test itself failing.
215
214
this . reportTested ( test , "ERRORED" , error ) ;
216
215
}
You can’t perform that action at this time.
0 commit comments