Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
Signed-off-by: Himani Pathak <[email protected]>
  • Loading branch information
Himani Pathak committed Aug 22, 2024
1 parent 59bdf13 commit e4b3577
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions playwright_test/Tests/Stcs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ test.describe('StcsTab', () => {

try {
const yaml = await runSSHCommand(command);
console.log('Command Output:', yaml);
console.log('Command Output:', yaml);
expect(yaml).toContain(SECURITY_AUX);
expect(yaml).toContain(SECURITY_STC_ZOWE);
expect(yaml).toContain(SECURITY_STC_ZIS);
Expand Down Expand Up @@ -193,7 +191,6 @@ test.describe('StcsTab', () => {

try {
const yaml = await runSSHCommand(command);
console.log('Command Output:', yaml);
expect(yaml).toContain(SECURITY_AUX);
expect(yaml).toContain(SECURITY_STC_ZOWE);
expect(yaml).toContain(SECURITY_STC_ZIS);
Expand Down
5 changes: 0 additions & 5 deletions playwright_test/Tests/Vsam.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ test.describe('VsamPage', () => {


test('test title of page', async ({ page }) => {
await page.waitForTimeout(5000);
const title = await vsamPage.returnTitleOfVsamPage();
expect(title).toBe(VSAM_TITLE);
})
Expand Down Expand Up @@ -126,7 +125,6 @@ test.describe('VsamPage', () => {
test('Test previous button is enabled', async ({ page }) => {
const is_prevButtonEnable = await vsamPage.isPreviousButtonEnable();
expect(is_prevButtonEnable).toBe(true);
await page.waitForTimeout(2000);
})

test('Test Skip Vsam button is enable', async ({ page }) => {
Expand All @@ -142,7 +140,6 @@ test.describe('VsamPage', () => {
test('Test continue to lauch button is disable', async ({ page }) => {
const is_ContinueButtonDisable = await vsamPage.isContinueButtonDisable();
expect(is_ContinueButtonDisable).toBe(true);
await page.waitForTimeout(2000);
})

test('Test fill vsam details NONRLS mode', async ({ page }) => {
Expand Down Expand Up @@ -177,7 +174,6 @@ test.describe('VsamPage', () => {
const command = `cat ${process.env.ZOWE_ROOT_DIR}/zowe.yaml`;
try {
const yaml = await runSSHCommand(command);
console.log('Command Output:', yaml);
expect(yaml).toContain(config.mode);
expect(yaml).toContain(config.volume);
expect(yaml).toContain(config.vsamDatasetName);
Expand All @@ -193,7 +189,6 @@ test.describe('VsamPage', () => {

try {
const yaml = await runSSHCommand(command);
console.log('Command Output:', yaml);
expect(yaml).toContain(config.vsamDatasetName);
} catch (error) {
console.error('Error executing command:', error.message);
Expand Down

0 comments on commit e4b3577

Please sign in to comment.