2020-02-21 08:34:55 +00:00
|
|
|
'use strict';
|
2019-11-23 13:02:51 +00:00
|
|
|
|
|
|
|
// ***********************************************************
|
|
|
|
// This example plugins/index.js can be used to load plugins
|
|
|
|
//
|
|
|
|
// You can change the location of this file or turn off loading
|
|
|
|
// the plugins file with the 'pluginsFile' configuration option.
|
|
|
|
//
|
|
|
|
// You can read more here:
|
|
|
|
// https://on.cypress.io/plugins-guide
|
|
|
|
// ***********************************************************
|
|
|
|
|
2020-02-21 08:34:55 +00:00
|
|
|
require('@babel/register')({
|
2021-05-12 23:00:09 +00:00
|
|
|
plugins: [ '@babel/plugin-transform-modules-commonjs' ]
|
2020-02-21 08:34:55 +00:00
|
|
|
});
|
|
|
|
module.exports = require('./main.js').default;
|