Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Sep 4, 2024
1 parent f5de2fd commit c19ab3f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions web/test/helpers_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ void main() {
expect(() => dartList[0], returnsNormally);
});

test('Headers to map', () async {
final request = XMLHttpRequest();
request.open('GET', 'www.google.com');
request.send();
test('responseHeaders transforms headers into a map', () async {
final request = XMLHttpRequest()
..open('GET', 'www.google.com')
..send();

await request.onLoad.first;

expect(
Expand Down

0 comments on commit c19ab3f

Please sign in to comment.