AVAを使用してテストを作成しようとしていますが、書き込めないようです。fn
コールバック関数をすべての関数に渡し、すべてが完了したら呼び出します。私のテストは
import test from 'ava';
import fn from './index.js';
test('NonLiteral && Literal', function (t) {
fn('test.txt', '', function (res) {
console.log(res);
t.is(res, '');
});
});
解像度は
This is a test
How is it going
So far!!!
しかし、私のテストは合格だと言っています。私はこのテストに従ってきました。これが私が見てきたスニペットです
test('throwing a named function will report the to the console', function (t) {
execCli('fixture/throw-named-function.js', function (err, stdout, stderr) {
t.ok(err);
t.match(stderr, /\[Function: fooFn]/);
// TODO(jamestalmage)
// t.ok(/1 uncaught exception[^s]/.test(stdout));
t.end();
});
});
誰かが私が間違っていることを説明できますか?