diff --git a/.travis.yml b/.travis.yml index d8d932e818..481f19ea43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ dart: - "1.19.1" with_content_shell: true before_install: + - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - ./tool/setup_dartium.sh - export PATH=$PATH":$PWD" diff --git a/test/over_react/component/dom_components_test.dart b/test/over_react/component/dom_components_test.dart index 9d6a8ac9b3..e7a34d33bc 100644 --- a/test/over_react/component/dom_components_test.dart +++ b/test/over_react/component/dom_components_test.dart @@ -17,7 +17,7 @@ library dom_components_test; // Tell dart2js that this library only needs to reflect the specified types. // This speeds up compilation and makes JS output much smaller. @MirrorsUsed(targets: const [ - 'over_react.Dom' + 'over_react.dom_components.Dom' ]) import 'dart:mirrors'; diff --git a/tool/dev.dart b/tool/dev.dart index e3f9d88f0d..9f1461a55b 100644 --- a/tool/dev.dart +++ b/tool/dev.dart @@ -30,7 +30,8 @@ main(List args) async { ..pubServe = true ..platforms = [ 'vm', - 'content-shell' + 'content-shell', + 'firefox', ] // Prevent test load timeouts on Smithy. ..concurrency = 1