You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
opened html locally causes error:
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
this is because default timeout for tests in mocha is 2000ms
and if user doesn't respond to the alert box in time, all tests fails:
some time just in before hook, sometimes in beforeEach and so on.
I will add this.timeout(200000) to bulgarian translations to prevent it.
Like this:
describe("test", function () {
this.timeout(200000);
....
});