blob: ae125c469b6476836f18dff834e40a02d64fa427 [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001// ***********************************************************
2// This example support/index.js is processed and
3// loaded automatically before your test files.
4//
5// This is a great place to put global configuration and
6// behavior that modifies Cypress.
7//
8// You can change the location of this file or turn off
9// automatically serving support files with the
10// 'supportFile' configuration option.
11//
12// You can read more here:
13// https://on.cypress.io/configuration
14// ***********************************************************
15
16// Import commands.js using ES2015 syntax:
17import './commands';
18import './steps/login.step';
Ittay Stern6f900cc2018-08-29 17:01:32 +030019import './steps/fill.service.popup.step';
20import './steps/fill.vnf.popup.step';
21import './steps/fill.network.step';
22import './steps/fill.vfModule.step';
23import './steps/menu.step';
24import './steps/openInstanceAuditInfoModal.step';
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030025import './elements/element.actions';
26import './elements/element.input.actions';
27import './elements/element.select.actions';
28import './application/application.session.actions';
29import './elements/element.table.actions';
30import './jsonBuilders/mocks/aai.mock';
31import './jsonBuilders/mocks/vid.mock';
Ittay Stern6f900cc2018-08-29 17:01:32 +030032import './jsonBuilders/mocks/permission.mock';
33
34
35import './steps/general/compareDeepObjects.step';
36import './steps/drawingBoard/drawingBoardModel.steps';
37import './steps/drawingBoard/drawingBoardTree.steps';
38import './steps/genericForm/genericFormAction.steps';
Ittay Sternf7926712019-07-07 19:23:03 +030039import './steps/drawingBoard/drawingBoardHeader.steps';
Ittay Stern6f900cc2018-08-29 17:01:32 +030040import './steps/drawingBoard/general.steps';
41import './steps/general/clickOutside.step';
42import './steps/drawingBoard/drawingBoardComponentInfo.steps';
43import './steps/genericForm/checkPopover.step';
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030044
45// Alternatively you can use CommonJS syntax:
46// require('./commands')
47
Ittay Stern6f900cc2018-08-29 17:01:32 +030048Cypress.Screenshot.defaults({
49 capture: 'runner'
50});