Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Side by Side Diff: sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'package:scheduled_test/scheduled_test.dart';
6
7 import '../descriptor.dart' as d;
8 import '../test_pub.dart';
9
10 const MAIN = """
11 import 'dart:async';
12
13 import 'a.dart' deferred as a;
14 import 'b.dart' deferred as b;
15
16 void main() {
17 Future.wait([lazyA.loadLibrary(), lazyB.loadLibrary()]).then((_) {
18 a.fn();
19 b.fn();
20 });
21 }
22 """;
23
24 const A = """
25 library a;
26
27 fn() => print("a");
28 """;
29
30 const B = """
31 library b;
32
33 fn() => print("b");
34 """;
35
36 main() {
37 initConfig();
38 integration("compiles deferred libraries to separate outputs", () {
39 // Dart2js can take a long time to compile dart code, so we increase the
40 // timeout to cope with that.
41 currentSchedule.timeout *= 3;
42
43 d.dir(
44 appPath,
45 [
46 d.appPubspec(),
47 d.dir(
48 'web',
49 [
50 d.file('main.dart', MAIN),
51 d.file('a.dart', A),
52 d.file('b.dart', B)])]).create();
53
54 schedulePub(
55 args: ["build"],
56 output: new RegExp(r'Built 3 files to "build".'));
57
58 d.dir(
59 appPath,
60 [
61 d.dir(
62 'build',
63 [
64 d.dir(
65 'web',
66 [
67 d.matcherFile('main.dart.js', isNot(isEmpty)),
68 d.matcherFile('main.dart.js_1.part.js', isNot(isEmpt y)),
69 d.matcherFile('main.dart.js_2.part.js', isNot(isEmpt y)),])])]).validate();
70 });
71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698