I've been hit by this during jsTests: ```Error: Ti...
# javascript
m
I've been hit by this during jsTests:
Copy code
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
But my test needs to run longuer than 2000ms. Is there anything I can do to increase that timeout?
👌 1
t
cc @Ilya Goncharov [JB]
o
it can be configured in karma.config.d https://github.com/JetBrains/compose-jb/blob/master/web/benchmark-core/karma.config.d/setTimeout.js or maybe even using kotlin gradle plugin (not sure though)
🙏 2
👀 1
m
Ah, nice, thanks!