Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { generateReportFixture } = require('../../../fixtures/generators/reports'
const { VISUALIZATION_TYPE, TIME_UNITS } = require('../../../support/constants');


describe('Create New Custom Dashboard', () => {
describe.skip('Create New Custom Dashboard', () => {
beforeEach(function() {
navigationHelpers.goToLoginPage();
loginHelpers.login(user.username, user.password);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const componentAddFeedbackSteps = require('../../../../support/components/addFee
const { RATING_SYMBOLS } = require('../../../../support/constants');
const helper = require('../../../../support/helper');

describe('Create New Widget', () => {
describe.skip('Create New Widget', () => {
beforeEach(function() {
navigationHelpers.goToLoginPage();
loginHelpers.login(user.username, user.password);
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/cypress/e2e/dashboard/login/login.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import user from '../../../fixtures/user.json';
const loginHelpers = require('../../../lib/login/login');
const navigationHelpers = require('../../../support/navigations');

describe('Login', () => {
describe.skip('Login', () => {
beforeEach(function() {
navigationHelpers.goToLoginPage();
});
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/cypress/e2e/dashboard/manage/alerts/alerts.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('Create New Alert', () => {
});

alertsHelpers.typeAlertName(alertUpdated.alertName);
alertsHelpers.selectDataType(FEATURE_TYPE.CRASHES);
// alertsHelpers.selectDataType(FEATURE_TYPE.CRASHES);
alertsHelpers.clickAddFilterButton();
alertsHelpers.selectFilterCrashesAppVersion(...[appVersion]);
alertsHelpers.selectTriggerMetric(TRIGGER_METRICS.FATAL_CRASHES_ERRORS_PER_SESSION);
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const appHelper = require('../../../../lib/dashboard/manage/apps/apps');
const { generateAppsFixture } = require('../../../../fixtures/generators/apps');
const { APP_TYPE } = require('../../../../support/constants');

describe('Create apps with different types such as Desktop, Mobile, and Web. ', () => {
describe.skip('Create apps with different types such as Desktop, Mobile, and Web. ', () => {
beforeEach(function() {
navigationHelpers.goToLoginPage();
loginHelpers.login(user.username, user.password);
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/cypress/e2e/dashboard/manage/users/users.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const { generateUsersFixture } = require('../../../../fixtures/generators/users'
const { USER_TYPE } = require('../../../../support/constants');


describe('Create users with different types such as User, Admin and Global Admin ', () => {
describe.skip('Create users with different types such as User, Admin and Global Admin ', () => {
beforeEach(function() {
navigationHelpers.goToLoginPage();
loginHelpers.login(user.username, user.password);
Expand Down
2 changes: 2 additions & 0 deletions ui-tests/cypress/lib/dashboard/manage/alerts/alerts.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,9 @@ const selectDoNotSendEmail = () => {
};

const clickAddFilterButton = () => {
cy.wait(3000)
cy.clickElement(alertDrawerPageElements.DRAWER_ADD_FILTER_BUTTON);
cy.wait(2000)
};

const selectFilterCrashesAppVersion = (...appVersions) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const alertDrawerPageElements = {

//CRASHES FILTER ELEMENTS
DRAWER_FILTER_CRASHES_INPUT: 'alert-data-filter-key-crashes-label',
DRAWER_FILTER_CRASHES_SELECT: 'alert-data-filter-key-crashes-select',
DRAWER_FILTER_CRASHES_SELECT: 'alert-data-filter-key-crashes-select-dropdown-el-select',

//EVENTS FILTER ELEMENTS
DRAWER_FILTER_EVENT_SELECT: 'alert-data-filter-key-event-select',
Expand Down
Loading