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

Unified Diff: pkg/polymer/test/events_test.html

Issue 24077003: fix polymer tests -- replace run.sh and run tests using bots (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/events_test.html
diff --git a/pkg/polymer/test/data/unit/web/events_test.html b/pkg/polymer/test/events_test.html
similarity index 57%
rename from pkg/polymer/test/data/unit/web/events_test.html
rename to pkg/polymer/test/events_test.html
index cbf33d145180f6a5f9b8c9d94b31fd3b5c6d4721..b077163d1c8d054b65ed4c3d16e7eed506bc4959 100644
--- a/pkg/polymer/test/data/unit/web/events_test.html
+++ b/pkg/polymer/test/events_test.html
@@ -7,7 +7,7 @@
<html>
<head>
<title>event path</title>
- <script src="packages/polymer/testing/testing.js"></script>
+ <script src="packages/polymer/boot.js"></script>
<script src="packages/unittest/test_controller.js"></script>
<!--
Test ported from:
@@ -57,41 +57,6 @@
<test-a id="a"></test-a>
<test-b id="b"></test-b>
- <script type="application/dart">
- import 'dart:html';
- import 'dart:async';
- import 'package:unittest/unittest.dart';
- import 'package:unittest/html_config.dart';
-
- main() {
- useHtmlConfiguration();
-
- test('host event', () {
- // Note: this test is currently the only event in
- // polymer/test/js/events.js at commit #7936ff8
- Timer.run(expectAsync0(() {
- var testA = query('#a');
- expect(testA.xtag.clicks, isEmpty);
- testA.click();
- expect(testA.xtag.clicks, ['host click on: test-a (id a)']);
- }));
- });
-
- test('local event', () {
- Timer.run(expectAsync0(() {
- var testB = query('#b');
- expect(testB.xtag.clicks, isEmpty);
- testB.click();
- expect(testB.xtag.clicks, []);
- var b1 = testB.shadowRoot.query('#b-1');
- b1.click();
- expect(testB.xtag.clicks, []);
- var b2 = testB.shadowRoot.query('#b-2');
- b2.click();
- expect(testB.xtag.clicks, ['local click under test-b (id b) on b-2']);
- }));
- });
- }
- </script>
+ <script type="application/dart" src="events_test.dart"></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698