Translations: Français
It's easy to make an assertion skipped with t.skip.xyz()
and then forget about it.
import test from 'ava';
test('some title', t => {
t.skip.is(1, 1);
});
import test from 'ava';
test('some title', t => {
t.is(1, 1);
});
Translations: Français
It's easy to make an assertion skipped with t.skip.xyz()
and then forget about it.
import test from 'ava';
test('some title', t => {
t.skip.is(1, 1);
});
import test from 'ava';
test('some title', t => {
t.is(1, 1);
});