How to restart application after each test using Protractor

Hi everyone,

I’m new to automation and I have started writing tests with Protractor.
I have put 5 tests in spec and I need to reset application after each test (not to uninstall, just to clear data).
I tried to put driver.quit() in last test (and noReset to true, fullReset to false in config, just to see what happens), but that just closes app, and next test fails since it’s not started again.
driver.resetApp() is not recognizable in my tests, so nothing happens.
Can someone help me what should I put in my conf file and in my tests?

Thanks in advance :slight_smile: