Tłumaczenie: Français
Możesz przekazać argumenty wiersza poleceń do plików testowych. Użyj argumentu --
terminatora aby oddzielić argumenty AVA od własnych:
// test.js
const test = require('ava');
test('argv', t => {
t.deepEqual(process.argv.slice(2), ['--hello', 'world']);
});
$ npx ava -- --hello world
Potrzebujesz dwóch --
argumentów terminatorów jeśli wywołujesz AVA za pomocą skryptu npm test
:
{
"scripts": {
"test": "ava"
}
}
$ npm test -- -- --hello world