MCPcopy Index your code
hub / github.com/ampproject/amphtml / ava

Function ava

build-system/tasks/ava.js:44–53  ·  view source on GitHub ↗

* Runs ava tests. * @return {Promise }

()

Source from the content-addressed store, hash-verified

42 * @return {Promise<void>}
43 */
44async function ava() {
45 execOrDie(
46 [
47 'npx ava',
48 ...testFiles,
49 '--color --fail-fast',
50 argv.watch ? '--watch' : '',
51 ].join(' ')
52 );
53}
54
55module.exports = {
56 ava,

Callers 1

testFunction · 0.85

Calls 1

execOrDieFunction · 0.85

Tested by 1

testFunction · 0.68