Skip to content

Commit

Permalink
Re-enable frontend_server_client tests (#2327)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette authored Jan 3, 2024
1 parent d5bfbbd commit b2405cb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend_server_client/test/frontend_sever_client_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ String get message => p.join('hello', 'world');

expect(await stdoutLines.next, p.join('goodbye', 'world'));
expect(await process.exitCode, 0);
// TODO(https://github.com/dart-lang/webdev/issues/2315): Fix and re-enable.
}, skip: true);
});

test('can handle compile errors and reload fixes', () async {
var entrypoint = p.join(packageRoot, 'bin', 'main.dart');
Expand Down Expand Up @@ -175,8 +174,7 @@ String get message => p.join('hello', 'world');

expect(await stdoutLines.next, p.join('goodbye', 'world'));
expect(await process.exitCode, 0);
// TODO(https://github.com/dart-lang/webdev/issues/2315): Fix and re-enable.
}, skip: true);
});

test('can compile and recompile a dartdevc app', () async {
var entrypoint =
Expand Down

0 comments on commit b2405cb

Please sign in to comment.