it('should load a saved data in the local storage', async () => {
   await n.evaluate((data) => {
     window.localStorage.setItem('redux', data);
   }, JSON.stringify(savedData.redux));
   await n.refresh();
   await n.wait('input[value="Quiz Title"]');
 });
  it('should be accessible', async () => {
    let err;

    try {
      await n.goto(URI);
      await n.wait('#root');
    } catch (e) {
      err = e;
    } finally {
      assert(err === undefined);
    }
  });