Files
vue-cli/packages/@vue/cli-plugin-e2e-nightwatch/__tests__/lib/globals-generated.js
T
Necmettin Karakaya 5baec1fdc5 chore: fix common misspelling errors (#5694)
Co-authored-by: Haoqun Jiang <haoqunjiang@gmail.com>
2020-08-10 01:17:01 +08:00

15 lines
360 B
JavaScript

/**
* This file is copied during the test inside the project folder and used to inspect the results
*/
const fs = require('fs')
module.exports = {
afterEach (browser, cb) {
fs.writeFile('test_settings.json', JSON.stringify(browser.options), cb)
},
reporter (results, cb) {
fs.writeFile('test_results.json', JSON.stringify(results), cb)
}
}