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

Unified Diff: sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart

Issue 24886002: Support dart2js in pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/dart.dart ('k') | sdk/lib/_internal/pub/test/serve/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart b/sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart
index 529facbad05a0ca6b454b81c260144ff00be5549..6d46bacfafa4e7269b9e14ce2541c6d51f77987f 100644
--- a/sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/serve_from_app_web_test.dart
@@ -15,19 +15,19 @@ main() {
d.appPubspec(),
d.dir("web", [
d.file("index.html", "<body>"),
- d.file("file.dart", "void main() => print('hello');"),
+ d.file("file.dart", "main() => print('hello');"),
d.dir("sub", [
d.file("file.html", "<body>in subdir</body>"),
- d.file("lib.dart", "void foo() => 'foo';"),
+ d.file("lib.dart", "main() => 'foo';"),
])
])
]).create();
startPubServe();
requestShouldSucceed("index.html", "<body>");
- requestShouldSucceed("file.dart", "void main() => print('hello');");
+ requestShouldSucceed("file.dart", "main() => print('hello');");
requestShouldSucceed("sub/file.html", "<body>in subdir</body>");
- requestShouldSucceed("sub/lib.dart", "void foo() => 'foo';");
+ requestShouldSucceed("sub/lib.dart", "main() => 'foo';");
endPubServe();
});
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/dart.dart ('k') | sdk/lib/_internal/pub/test/serve/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698