Increase the test timeout: it seems that 5 seconds is not enough, maybe reason for tests failing.

This commit is contained in:
Aiosa 2024-11-01 22:20:15 +01:00
parent cf65f1a4f4
commit 5fdeb382ea

View File

@ -14,7 +14,7 @@
config: {
//five seconds timeout due to problems with untrusted events (e.g. auto zoom) for non-interactive runs
//there is timeWatcher property but sometimes tests do not respect it, or they get stuck due to bugs
testTimeout: isInteractiveMode() ? 30000 : 5000
testTimeout: isInteractiveMode() ? 30000 : 10000
}
};
</script>