| Index: tests/compiler/dart2js/dart_backend_test.dart
|
| diff --git a/tests/compiler/dart2js/dart_backend_test.dart b/tests/compiler/dart2js/dart_backend_test.dart
|
| index 2afbe17d59d0db101c9f7af59975d247f59d20bd..608ec55b0b98320baa926bf41452cb8beb40a969 100644
|
| --- a/tests/compiler/dart2js/dart_backend_test.dart
|
| +++ b/tests/compiler/dart2js/dart_backend_test.dart
|
| @@ -4,6 +4,7 @@
|
|
|
| import "package:expect/expect.dart";
|
| import 'dart:async';
|
| +import "package:async_helper/async_helper.dart";
|
| import 'parser_helper.dart';
|
| import 'mock_compiler.dart';
|
| import '../../../sdk/lib/_internal/compiler/compiler.dart';
|
| @@ -129,13 +130,13 @@ testDart2DartWithLibrary(
|
| if (minify) options.add('--minify');
|
| if (stripTypes) options.add('--force-strip=types');
|
|
|
| - compile(
|
| + asyncTest(() => compile(
|
| scriptUri,
|
| fileUri('libraryRoot/'),
|
| fileUri('packageRoot/'),
|
| provider,
|
| handler,
|
| - options).then(continuation);
|
| + options).then(continuation));
|
| }
|
|
|
| testSimpleFileUnparse() {
|
|
|