Skip to content

Commit 452779d

Browse files
committed
Merge
1 parent 1fa5b39 commit 452779d

4 files changed

Lines changed: 2 additions & 227 deletions

File tree

browserstack.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
require('dotenv').config();
22
const cp = require('child_process');
33
const clientPlaywrightVersion = cp
4-
<<<<<<< HEAD
5-
=======
64
// .execSync('npx playwright --version')
7-
>>>>>>> main
85
.toString()
96
.trim()
107
.split(' ')[1];

e2e-tests/fileactions.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export class FileActions {
3030
// drive locators
3131
this.passwordPlaceholderSettings = this.mainFrame.getByPlaceholder('Password', { exact: true })
3232

33-
<<<<<<< HEAD
3433
// file actions
3534
this.filemenu = page.frameLocator('#sbox-iframe').getByRole('button', { name: ' File' });
3635
this.filemenuMobile = page.frameLocator('#sbox-iframe').locator('.cp-toolbar-file');
@@ -45,8 +44,6 @@ export class FileActions {
4544
this.deletebutton = page.frameLocator('#sbox-iframe').getByRole('button', { name: 'Delete' });
4645
// this.trash = page.frameLocator('#sbox-iframe').getByRole('listitem').filter({ hasText: 'Move to trash' });
4746
this.trash = page.frameLocator('#sbox-iframe').getByText('Move to trash')
48-
=======
49-
>>>>>>> main
5047

5148
this.loginLinkDrive = this.mainFrame.getByRole('link', { name: 'Log in' });
5249
this.registerLinkDrive = this.mainFrame.getByRole('link', { name: 'Sign up' });
@@ -361,14 +358,12 @@ export class FileActions {
361358

362359
}
363360

364-
<<<<<<< HEAD
365361
async moveToTrash() {
366-
await this.trash.click()
367-
=======
362+
await this.trash.click()
363+
}
368364
newDriveFile (file) {
369365
return this.mainFrame.getByRole('listitem').filter({ hasText: file }).locator('span').first()
370366

371-
>>>>>>> main
372367
}
373368

374369

@@ -593,8 +588,6 @@ export class FileActions {
593588

594589
}
595590

596-
<<<<<<< HEAD
597-
=======
598591
async clearFormQuestions() {
599592
await this.deleteButton.first().waitFor();
600593
await this.deleteButton.first().click();
@@ -633,7 +626,6 @@ export class FileActions {
633626
return this.secureFrame.locator('span').filter({ hasText: templateName }).nth(1)
634627

635628
}
636-
>>>>>>> main
637629

638630
async clickTags (local) {
639631
await this.mainFrame.getByRole('menuitem', { name: ' Tags' }).locator('a').click();

e2e-tests/genericfile_anon_code.spec.js

Lines changed: 0 additions & 207 deletions
This file was deleted.

playwright.config.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,19 +131,14 @@ module.exports = defineConfig({
131131
}, {
132132
name: 'chrome@Galaxy S9+',
133133
use: {
134-
<<<<<<< HEAD
135-
...devices['Samsung Galaxy S22:13'],
136-
=======
137134
...devices['Galaxy S9+'],
138-
>>>>>>> main
139135
hasTouch: true,
140136
browserName: 'chromium',
141137
channel: 'chrome',
142138
locale: 'en-GB',
143139
permissions: ['clipboard-read', 'clipboard-write', 'notifications'],
144140
mobile: true
145141
}
146-
<<<<<<< HEAD
147142
}, {
148143
name: 'chrome@Samsung Galaxy S22:13@browserstack-mobile',
149144
use: {
@@ -167,8 +162,6 @@ module.exports = defineConfig({
167162
permissions: ['clipboard-read', 'clipboard-write', 'notifications'],
168163
mobile: true
169164
}
170-
=======
171-
>>>>>>> main
172165
}
173166
]
174167
});

0 commit comments

Comments
 (0)