We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 848e5dd commit c3caaf7Copy full SHA for c3caaf7
tests/stores/unit/middleware/localStorage.ts
@@ -33,7 +33,13 @@ if (!global.localStorage) {
33
let store: Store;
34
35
describe('middleware - local storage', () => {
36
- beforeEach(() => {
+ beforeEach((suite) => {
37
+ const { browserName } = suite.remote.session.capabilities;
38
+
39
+ if (browserName === 'Safari') {
40
+ suite.skip('Local Storage is not accessible on private mode pre version 11.');
41
+ }
42
43
global.localStorage.removeItem(LOCAL_STORAGE_TEST_ID);
44
store = new Store();
45
});
0 commit comments