hermione-gemini-migrator
Version:
Plugin for hermione for migration gemini tests.
9 lines (7 loc) • 349 B
JavaScript
module.exports = async function(hermione) {
const {outputFilePath} = hermione.geminiMigrator;
await hermione.readTests(outputFilePath).then(outputTestCollection => {
hermione.geminiMigrator.outputTestCollection = outputTestCollection;
hermione.geminiMigrator.outputTestCollections.push(outputTestCollection);
});
};