Skip to content

Commit

Permalink
Remove commented code and debugger statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nirajCITZ committed Sep 15, 2023
1 parent 7c95abf commit c264a58
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions e2e/cypress/tests/01-api-key/01-create-api.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,21 +79,8 @@ describe('Create API Spec', () => {
})
})

// it('creates as new product in the directory through GWA Cli command', () => {
// cy.gwaPublish('product', 'gwa-product.yaml').then((response: any) => {
// expect(response.stdout).to.contain('Product successfully published');
// })
// })

// it('Upload dataset using GWA Cli command', () => {
// cy.gwaPublish('dataset', 'gwa-dataset.yaml').then((response: any) => {
// expect(response.stdout).to.contain('Dataset successfully published');
// })
// })

it('Upload dataset and Product using GWA Apply command', () => {
cy.executeCliCommand('gwa apply').then((response) => {
debugger
let wordOccurrences = (response.stdout.match(/\bcreated\b/g) || []).length;
expect(wordOccurrences).to.equal(2)
})
Expand Down
1 change: 0 additions & 1 deletion e2e/cypress/tests/16-gwa-cli/02-cli-generate-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ describe('Verify CLI commands for generate/apply config', () => {

it('Check gwa command to apply generated config', () => {
cy.executeCliCommand('gwa apply').then((response) => {
debugger
let wordOccurrences = (response.stdout.match(/\bcreated\b/g) || []).length;
expect(wordOccurrences).to.equal(3)
namespace = response.stdout.split('\n')[0]
Expand Down

0 comments on commit c264a58

Please sign in to comment.