aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/support/index.js
blob: 5062f5100e98465bd4b23eebb8b62717a94e7365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// ***********************************************************
// This example support/index.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
// behavior that modifies Cypress.
//
// You can change the location of this file or turn off
// automatically serving support files with the
// 'supportFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/configuration
// ***********************************************************

// Import commands.js using ES2015 syntax:
import './commands';
import './steps/login.step';
import './steps/fill.service.popup.step';
import './steps/fill.vnf.popup.step';
import './steps/fill.network.step';
import './steps/fill.vfModule.step';
import './steps/menu.step';
import './steps/openInstanceAuditInfoModal.step';
import './elements/element.actions';
import './elements/element.input.actions';
import './elements/element.select.actions';
import './application/application.session.actions';
import './elements/element.table.actions';
import './jsonBuilders/mocks/aai.mock';
import './jsonBuilders/mocks/vid.mock';
import './jsonBuilders/mocks/permission.mock';

import './steps/general/compareDeepObjects.step';
import './steps/drawingBoard/drawingBoardModel.steps';
import './steps/drawingBoard/drawingBoardTree.steps';
import './steps/genericForm/genericFormAction.steps';
import './steps/genericForm/popupViewport.step';
import './steps/drawingBoard/drawingBoardHeader.steps';
import './steps/drawingBoard/general.steps';
import './steps/general/clickOutside.step';
import './steps/drawingBoard/drawingBoardComponentInfo.steps';
import './steps/genericForm/checkPopover.step';

// Alternatively you can use CommonJS syntax:
// require('./commands')

Cypress.Screenshot.defaults({
  capture: 'runner'
});