聚合物测试 2.0 冻结 chrome 62

Polymer test 2.0 freeze with chrome 62

当我 运行 我的测试一切顺利。它告诉我所有测试都可以,但之后,它永远不会单独结束。它告诉我

Test run ended with great success

chrome 62 (269/0/0)                   
hook: cleanup
chrome 62                CALL title()
chrome 62                GET /session/:sessionID/title
chrome 62                CALL title()
chrome 62                GET /session/:sessionID/title
chrome 62                CALL title()

而且我有 CALL title()GET /session/:sessionID/title 不确定,直到我手动停止测试。问题是当我推送到服务器时,我无法手动停止它,所以测试没有通过。 在 chrome 56 我没有问题。

我的问题是,如何解决这个问题或如何回到 chrome 56?

要安装 chrome 我正在使用此命令:

set -xe && wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && apt-get update -yqqq && apt-get install -qq -y google-chrome-stable

非常感谢!

我解决了我的问题。我正在使用此命令 运行 我的测试:

polymer test

但是对于web-component-tester,如果我使用

wct

完美运行!