You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import test from 'ava';
test.after(t => {
console.log('after');
});
test(t => {
throw 'error';
});
after hook won't execute in this situation, if database need to be clean in after hook, then it will not be cleaned and future test will fail due to unclean database.
Environment
node version v5.5.0, gulp-ava version 0.11.0, ava version latest
The text was updated successfully, but these errors were encountered:
Description
after hook won't execute in this situation, if database need to be clean in after hook, then it will not be cleaned and future test will fail due to unclean database.
Environment
node version v5.5.0, gulp-ava version 0.11.0, ava version latest
The text was updated successfully, but these errors were encountered: