Skip to content

Instantly share code, notes, and snippets.

@mbround18
Created February 28, 2020 18:17
Show Gist options
  • Save mbround18/469e0100b5dee51fd85fea82baacfb4e to your computer and use it in GitHub Desktop.
Save mbround18/469e0100b5dee51fd85fea82baacfb4e to your computer and use it in GitHub Desktop.
export default function () {
return {
async reportTaskStart (/* startTime, userAgents, testCount */) {
throw new Error('Not implemented');
},
async reportFixtureStart (/* name, path, meta */) {
throw new Error('Not implemented');
},
async reportTestStart (/* name, meta */) {
// NOTE: This method is optional.
},
async reportTestDone (/* name, testRunInfo, meta */) {
throw new Error('Not implemented');
},
async reportTaskDone (/* endTime, passed, warnings, result */) {
throw new Error('Not implemented');
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment