An open API service indexing awesome lists of open source software.

https://github.com/bahmutov/cypress-skip-and-only-ui

Client-side buttons to run a single test or skip it for Cypress test runner
https://github.com/bahmutov/cypress-skip-and-only-ui

cypress cypress-plugin

Last synced: 3 months ago
JSON representation

Client-side buttons to run a single test or skip it for Cypress test runner

Awesome Lists containing this project

README

        

# cypress-skip-and-only-ui [![renovate-app badge][renovate-badge]][renovate-app] [![CircleCI](https://circleci.com/gh/bahmutov/cypress-skip-and-only-ui.svg?style=svg)](https://circleci.com/gh/bahmutov/cypress-skip-and-only-ui) [![ci](https://github.com/bahmutov/cypress-skip-and-only-ui/actions/workflows/ci.yml/badge.svg?branch=master&event=push)](https://github.com/bahmutov/cypress-skip-and-only-ui/actions/workflows/ci.yml) ![cypress version](https://img.shields.io/badge/cypress-9.7.0-brightgreen)

> Client-side buttons to run a single test or skip it for Cypress test runner

[![NPM][npm-icon] ][npm-url]

![Cypress skip and only](img/skip-and-only.gif)

## Install and use

```shell
npm i -D cypress-skip-and-only-ui
```

Import from your `cypress/support/e2e.js`

```js
import 'cypress-skip-and-only-ui/support';
```

Import and register task from `cypress.config.ts` / `cypress.config.js`

```js
import { defineConfig } from 'cypress'
import skipAndOnlyUiTasks from 'cypress-skip-and-only-ui/task';

export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
on('task', skipAndOnlyUiTasks)
}
}
});
```

Note: if you have other tasks already, just merge the objects before registering

```js
import { defineConfig } from 'cypress'
import skipAndOnlyUiTasks from 'cypress-skip-and-only-ui/task';

const otherTasks = [{ ... }]
module.exports = (on, config) => {
on('task', {
...otherTasks,
...skipAndOnlyUiTasks
})
}
```

### Small print

Author: Gleb Bahmutov <[email protected]> © 2019

* [@bahmutov](https://twitter.com/bahmutov)
* [glebbahmutov.com](https://glebbahmutov.com)
* [blog](https://glebbahmutov.com/blog)

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet /
[open issue](https://github.com/bahmutov/cypress-skip-and-only-ui/issues) on Github

## MIT License

Copyright (c) 2019 Gleb Bahmutov <[email protected]>

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

[npm-icon]: https://nodei.co/npm/cypress-skip-and-only-ui.svg?downloads=true
[npm-url]: https://npmjs.org/package/cypress-skip-and-only-ui
[renovate-badge]: https://img.shields.io/badge/renovate-app-blue.svg
[renovate-app]: https://renovateapp.com/