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

Unified Diff: tests/isolate/browser/package_resolve_browser_test.dart

Issue 2495383003: Add implementation of Isolate.resolvePackageUri for dart2js. (Closed)
Patch Set: cl comments Created 4 years, 1 month 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 | « tests/isolate/browser/package_resolve_browser_hook_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/browser/package_resolve_browser_test.dart
diff --git a/tests/isolate/browser/package_resolve_browser_test.dart b/tests/isolate/browser/package_resolve_browser_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..49ced93b24747a0d6c915da138b69b0c5b86f49e
--- /dev/null
+++ b/tests/isolate/browser/package_resolve_browser_test.dart
@@ -0,0 +1,16 @@
+// Copyright (c) 2015, 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 'dart:isolate';
+import 'package:unittest/unittest.dart';
+import 'package:unittest/html_config.dart';
+
+main() {
+ useHtmlConfiguration();
+
+ test('by default package-uri resolve under base/packages/', () async {
+ var uri = await Isolate.resolvePackageUri(Uri.parse('package:foo/bar.txt'));
+ expect(uri, Uri.base.resolve('packages/foo/bar.txt'));
+ });
+}
« no previous file with comments | « tests/isolate/browser/package_resolve_browser_hook_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698