DEV Community

Tymur Levtsun
Tymur Levtsun

Posted on

Skipping E2E tests

As one of the submissions I had to do for my course was a contribution to some repository. I found one of my classmates worked on the chunk repository so I decided to take a look at what kind of issues they have and found one that seemed to be suitable for me.

Overview

The issueitself was about putting some e2e tests to some code block that gonna be skipped on the CI, because these tests don't provide any additional value if you just run them on CI for each PR, but might be useful for some developers in some cases.

Implementation

The repository maintainer recommended me to put tests that they don't want to run in "skip block". It turned out that you can do it using desribe.skip. I didn't know that it was a thing before so it was my many "take-away" from this task.

PR

When I was done I created the PR and now I wait for maintainers to take a look at it and hope it gonna be merged soon.

Top comments (0)