I have only 3 test cases on a spec file -but when i run this spec -cypress runner often crashes chrome browser. And i have to restart again. Is this is something with my code ? or is there any solutions for this
Thanks
I have only 3 test cases on a spec file -but when i run this spec -cypress runner often crashes chrome browser. And i have to restart again. Is this is something with my code ? or is there any solutions for this
Thanks
Try setting the numTestsKeptInMemory: 5
, the default value might be 50
. This way was can reduce the memory consumption. Save the configuration, close and star the app again.
Avoid writing lengthy tests and split the test file into multiple test/spec files.