Edit: I should mention I'm using Jest as a test-runner, I don't know if you're using Jest, but I'll leave this here for now anyway.
The way I'm doing it in my project now is to use the .only
function on my tests.
https://jestjs.io/docs/en/api#testonlyname-fn-timeout
test.only('the user can continue to account creation', async () => {
await element(by.id('continueButton')).tap()
await expect(element(by.id('accountCreationScreen'))).toBeVisible()
})
Notice though, that in my case I have to keep the tests that logs a user in to the app. But that's fine for me, I still skip all the other tests.
Hope that works out for you, or helps in some way.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…