Attempt to fix the cypress flake (#8492)

This commit is contained in:
Michael Telatynski 2022-05-04 12:07:37 +01:00 committed by GitHub
parent 5cece10552
commit c616bd7a62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 95 additions and 18 deletions

View file

@ -16,8 +16,13 @@ limitations under the License.
/// <reference types="cypress" />
import { synapseDocker } from "./synapsedocker/index";
import { synapseDocker } from "./synapsedocker";
import PluginEvents = Cypress.PluginEvents;
import PluginConfigOptions = Cypress.PluginConfigOptions;
export default function(on, config) {
/**
* @type {Cypress.PluginConfig}
*/
export default function(on: PluginEvents, config: PluginConfigOptions) {
synapseDocker(on, config);
}