我想编写一个测试,以便在我提交字符串时,@ tracked数组= [0,0,0]字段将发生变化。我对hbs有一个简单的<Textarea @value={{ input0 }} ></Textarea>
。如果输入为1
,则跟踪的数组将变为[0,1,0]
。我该怎么做呢??到目前为止,我有以下无效的代码:
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { click, render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | array', function(hooks) {
setupRenderingTest(hooks);
test('Textarea should display PLACE [0,1,0]"', async function(assert) {
await render(hbs`<Array />`);
assert.equal(find('textarea').value, 'testing"')
});
});
欢迎使用堆栈溢出!
[您似乎正在被window.find
拖钓,这不是您想要的,您需要find
中的@ember/test-helpers
。
替换:
import { click, render } from '@ember/test-helpers';
with:
import { click, find, render } from '@ember/test-helpers';
祝你好运!