0

我有一个记录 ember 集成测试的插件:

https://github.com/QuantumInformation/ember-cli-test-recorder

但是我发现当我通过 npm 将它导入到 ember cli 项目中,然后使用它在 appplication.hbs 中公开的组件时:

<h2 id="title">Welcome to Ember.js</h2>

{{outlet}}
{{test-recorder currentRouteName=currentRouteName}}

我在运行时得到以下信息:

`Uncaught Error: Assertion Failed: A helper named 'test-recorder' could not be found

请注意,该组件在虚拟应用程序中运行良好,并且此插件曾经在 ember 的 1.10 版中运行。

在这种情况下,对插件和 ember 项目使用 ember cli 0.2.5

4

1 回答 1

1

跑步ember install ember-cli-test-recorder为我解决了这个问题。

出于某种原因,仅仅跑步npm install ember-cli-test-recorder是不够的。

于 2015-05-19T12:44:11.723 回答