| Index: sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
|
| diff --git a/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart b/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
|
| index 13a050bc3392df1e58e62001c13b2869b8f6ca5c..970d0aa403d5e72f4de628cf74d07f97880ad376 100644
|
| --- a/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
|
| +++ b/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
|
| @@ -1,6 +1,12 @@
|
| +// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| import 'package:scheduled_test/scheduled_test.dart';
|
| +
|
| import '../descriptor.dart' as d;
|
| import '../test_pub.dart';
|
| +
|
| const MAIN = """
|
| import 'dart:async';
|
|
|
| @@ -14,20 +20,26 @@ void main() {
|
| });
|
| }
|
| """;
|
| +
|
| const A = """
|
| library a;
|
|
|
| fn() => print("a");
|
| """;
|
| +
|
| const B = """
|
| library b;
|
|
|
| fn() => print("b");
|
| """;
|
| +
|
| main() {
|
| initConfig();
|
| integration("compiles deferred libraries to separate outputs", () {
|
| + // Dart2js can take a long time to compile dart code, so we increase the
|
| + // timeout to cope with that.
|
| currentSchedule.timeout *= 3;
|
| +
|
| d.dir(
|
| appPath,
|
| [
|
| @@ -38,9 +50,11 @@ main() {
|
| d.file('main.dart', MAIN),
|
| d.file('a.dart', A),
|
| d.file('b.dart', B)])]).create();
|
| +
|
| schedulePub(
|
| args: ["build"],
|
| output: new RegExp(r'Built 4 files to "build".'));
|
| +
|
| d.dir(
|
| appPath,
|
| [
|
| @@ -53,6 +67,6 @@ main() {
|
| d.matcherFile('main.dart.js', isNot(isEmpty)),
|
| d.matcherFile('main.dart.precompiled.js', isNot(isEmpty)),
|
| d.matcherFile('main.dart.js_1.part.js', isNot(isEmpty)),
|
| - d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty))])])]).validate();
|
| + d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty)),])])]).validate();
|
| });
|
| }
|
|
|