acuminous/zUnit

View on GitHub
lib/Events.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const Events = {
  PASSED: 'passed',
  FAILED: 'failed',
  SKIPPED: 'skipped',
  STARTED: 'started',
  FINISHED: 'finished',
};

module.exports = Events;