Skip to content

Commit a8de8fd

Browse files
committed
Update browsers
1 parent 3b74783 commit a8de8fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
[curl builder](https://app.mabl.com/workspaces/-/settings/apis#api-docs-selector-dropdown-button)
105105
to find the id.
106106
- `browser-types` {string} (optional): comma or new line separated override for browser
107-
types to test e.g. `chrome, firefox, safari, edge`. If not
107+
types to test e.g. `chrome, firefox, webkit, edge`. If not
108108
provided, mabl will test the browsers configured on the triggered test.
109109
- `plan-labels` {string} (optional): comma or new line separated plan labels to test. Plans matching **any** label will be run. e.g. `smoke-test, beta-feature`. Note: additional selection criteria must also be met like application-id or environment-id, if supplied.
110110
- `uri` {string} (optional, DEPRECATED - use app_url) the base uri to run browser based tests against. If provided, this will

test/suite.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ describe('GitHub Action tests', () => {
3636
setGithubInput(ActionInputs.BrowserTypes, 'chrome, firefox ');
3737
expect(optionalArrayInput(ActionInputs.BrowserTypes)).toEqual(['chrome', 'firefox']);
3838

39-
setGithubInput(ActionInputs.BrowserTypes, 'chrome\nfirefox\nsafari ');
40-
expect(optionalArrayInput(ActionInputs.BrowserTypes)).toEqual(['chrome', 'firefox', 'safari']);
39+
setGithubInput(ActionInputs.BrowserTypes, 'chrome\nfirefox\nwebkit\nedge ');
40+
expect(optionalArrayInput(ActionInputs.BrowserTypes)).toEqual(['chrome', 'firefox', 'webkit', 'edge']);
4141
});
4242

4343
it('parses boolean inputs', () => {

0 commit comments

Comments
 (0)