File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
lib/src/runner/browser/compilers Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ class Dart2WasmSupport implements CompilerSupport {
116116 /// A handler that serves wrapper files used to bootstrap tests.
117117 shelf.Response _wrapperHandler (shelf.Request request) {
118118 var path = p.fromUri (request.url);
119- print (request.url);
120119
121120 if (path.endsWith ('.html' )) {
122121 var test = '${p .withoutExtension (path )}.dart' ;
Original file line number Diff line number Diff line change @@ -108,7 +108,10 @@ void main() {
108108 expect (test.stdout, emitsThrough ('hello' ));
109109 expect (test.stderr, emits ('world' ));
110110 await test.shouldExit (0 );
111- });
111+ },
112+ skip: Platform .isWindows && compiler == Compiler .exe
113+ ? 'https://github.com/dart-lang/test/issues/2150'
114+ : null );
112115 }
113116 },
114117 skip: compiler == Compiler .dart2wasm
You can’t perform that action at this time.
0 commit comments