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

Unified Diff: sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart

Issue 657673002: Regenerate pub sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart b/sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart
index ad6e2f37c986980a8ea975d594a6fcdb62f3ad0d..0b33b90635ba0dc3ea239ce6c8185f128f3d3d39 100644
--- a/sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/build/copies_browser_js_next_to_entrypoints_test.dart
@@ -1,12 +1,23 @@
+// Copyright (c) 2013, 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';
import 'utils.dart';
+
main() {
initConfig();
+
integration("compiles dart.js and interop.js next to entrypoints", () {
+ // Dart2js can take a long time to compile dart code, so we increase the
+ // timeout to cope with that.
currentSchedule.timeout *= 3;
+
serveBrowserPackage();
+
d.dir(appPath, [d.appPubspec({
"browser": "1.0.0"
}),
@@ -24,10 +35,13 @@ main() {
d.dir(
'subweb',
[d.file('subfile.dart', 'void main() => print("subhello");')])])]).create();
+
pubGet();
+
schedulePub(
args: ["build", "foo", "web"],
output: new RegExp(r'Built 16 files to "build".'));
+
d.dir(
appPath,
[
@@ -59,7 +73,7 @@ main() {
d.file('dart.js', 'contents of dart.js'),
d.file('interop.js', 'contents of interop.js')])]),
d.matcherFile('subfile.dart.js', isNot(isEmpty)),
- d.matcherFile('subfile.dart.precompiled.js', isNot(isEmpty))])]),
+ d.matcherFile('subfile.dart.precompiled.js', isNot(isEmpty)),])]),
d.dir(
'web',
[

Powered by Google App Engine
This is Rietveld 408576698