libreoffice-online/cypress_test/plugins/index.js
Tamás Zolnai d413d55f91 cypress: Use eslint to check coding conventions during build.
Use loleaflet's config file to have the same
conventions under cypress_test folder too.
Update test code to pass esling check.

Change-Id: Iade932e6d3cd8941b5fc0897c56c68d2493f0dce
2020-01-21 16:13:01 +01:00

13 lines
176 B
JavaScript

/* global require */
var tasks = require('./tasks');
function plugin(on, config) {
on('task', {
copyFile: tasks.copyFile
});
return config;
}
module.exports = plugin;