Skip to content
Snippets Groups Projects
Commit 685b208a authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Do not skip safari 9 browser test because it works now

parent 87f62992
No related branches found
No related tags found
No related merge requests found
......@@ -38,8 +38,7 @@ describe('Smoke tests on older browsers', () => {
return expect(isDisplayed).toEqual(true);
});
// Safari 9 has always been blank screened due to lack of Intl polyfill
test.skip('Safari 9 should not be unsupported', async () => {
test('Safari 9 should be supported', async () => {
const driverConfig = {
browserName: 'safari',
platform: 'OS X 10.11',
......@@ -55,7 +54,7 @@ describe('Smoke tests on older browsers', () => {
return expect(isDisplayed).toEqual(true);
});
test('Safari 10 should not be unsupported', async () => {
test('Safari 10 should be supported', async () => {
const driverConfig = {
browserName: 'safari',
platform: 'OS X 10.11',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment