Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ifarzana committed Oct 20, 2023
1 parent 24af074 commit d587402
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/Display/datasets.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('Datasets', function() {
});
});

it.only('add row/column to an existing dataset', function() {
it('add row/column to an existing dataset', function() {
// Create a new dataset and then search for it and delete it
cy.createDataset('Cypress Test Dataset ' + testRun).then((id) => {
cy.intercept({
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/Layout/users.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('Users', function() {
testRun = Cypress._.random(0, 1e9);
});

it.only('should add a user', function() {
it('should add a user', function() {
cy.intercept({
url: '/user/form/homepages?groupId=1&userTypeId=3*',
query: {},
Expand Down
3 changes: 1 addition & 2 deletions cypress/e2e/campaigns.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Campaigns', function() {
// Create a list campaign
// Assign layout to it
// and add the id to the session
it.only('should add a campaign and assign a layout', function() {
it('should add a campaign and assign a layout', function() {
cy.intercept('/campaign?draw=4&*').as('campaignGridLoad');

cy.intercept({
Expand Down Expand Up @@ -83,7 +83,6 @@ describe('Campaigns', function() {
cy.wait('@layoutLoadAfterSearch').then((interception) => {
// Perform your desired actions or assertions here
cy.log('Layout Loading');
// cy.get('#layoutAssignments tbody tr').should('have.length', 2);

cy.get('#layoutAssignments tbody tr').should('have.length', 2);

Expand Down

0 comments on commit d587402

Please sign in to comment.