Created
February 28, 2020 18:17
-
-
Save mbround18/469e0100b5dee51fd85fea82baacfb4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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