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

Unified Diff: pkg/polymer/test/transform/common.dart

Issue 23678009: fixed TodoMVC tests to include deploying to JS (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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: pkg/polymer/test/transform/common.dart
diff --git a/pkg/polymer/test/transform/common.dart b/pkg/polymer/test/transform/common.dart
index 8114feb61c32b0aa98031f08d8470da598404a1a..f1d85000ab052c0f4d795ab71162d85bac4dfdaa 100644
--- a/pkg/polymer/test/transform/common.dart
+++ b/pkg/polymer/test/transform/common.dart
@@ -23,7 +23,7 @@ AssetId idFromString(String s) {
class TestHelper implements PackageProvider {
/**
* Maps from an asset string identifier of the form 'package|path' to the
- * file contents.
+ * file contents.
*/
final Map<String, String> files;
final Iterable<String> packages;
@@ -95,7 +95,11 @@ testPhases(String testName, List<List<Transformer>> phases,
});
}
+// TODO(jmesserly): this is .debug to workaround issue 13046.
const SHADOW_DOM_TAG =
- '<script src="packages/shadow_dom/shadow_dom.min.js"></script>\n';
+ '<script src="packages/shadow_dom/shadow_dom.debug.js"></script>\n';
const INTEROP_TAG = '<script src="packages/browser/interop.js"></script>\n';
+
+const PKG_JS_INTEROP_TAG =
+ '<script src="packages/js/dart_interop.js"></script>\n';
« no previous file with comments | « pkg/polymer/test/transform/all_phases_test.dart ('k') | pkg/polymer/test/transform/polyfill_injector_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698