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

https://github.com/bahmutov/cypress-await

Cypress async await magic 🪄
https://github.com/bahmutov/cypress-await

cypress-plugin

Last synced: 3 months ago
JSON representation

Cypress async await magic 🪄

Awesome Lists containing this project

README

        

# cypress-await ![cypress version](https://img.shields.io/badge/cypress-13.6.4-brightgreen)

> Cypress spec preprocessor that adds the "async / await" syntax

## Examples

- 📝 Read blog post [Use Async Await In Cypress Specs](https://glebbahmutov.com/blog/use-async-await-in-cypress-specs/)
- 📝 Read blog post [Use Cypress For API Testing](https://glebbahmutov.com/blog/use-cypress-for-api-testing/)
- 📝 Read blog post [Click Button If Enabled](https://glebbahmutov.com/blog/click-button-if-enabled/)
- 📺 Watch video [Await Cypress Command Results](https://www.youtube.com/watch?v=5faeSbvCJQY)
- 📺 Watch video [cypress-await Sync Mode Example](https://youtu.be/opOopVq5AmA)
- 📺 Watch video [Type Placeholders Into The Form: manp and cypress-await example](https://youtu.be/Z4nDKbWMkJc)
- 📺 Watch video [Click Button If Enabled Using cypress-if And cypress-await Plugins](https://youtu.be/H04FSnH-6U0)
- 🖥️ Repo [bahmutov/cypress-todomvc-await-example](https://github.com/bahmutov/cypress-todomvc-await-example)

🎓 Covered in my [Cypress Plugins course](https://cypress.tips/courses/cypress-plugins)

- [Lesson n6: Paginate using the await keyword](https://cypress.tips/courses/cypress-plugins/lessons/n6)
- [Lesson n7: Paginate using synchronous code](https://cypress.tips/courses/cypress-plugins/lessons/n7)

## Todos

- switch from `@cypress/browserify-preprocessor` to `@cypress/webpack-batteries-included-preprocessor` for bundling transpiled spec

## Install

Add this package as a dev dependency

```
$ npm i -D cypress-await
# or using Yarn
$ yarn add -D cypress-await
```

## Use as a preprocessor

Add the following to your `cypress.config.js` file:

```js
// cypress.config.js
const { defineConfig } = require('cypress')
// https://github.com/bahmutov/cypress-await
const cyAwaitPreprocessor = require('cypress-await/src/preprocessor')

module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
on('file:preprocessor', cyAwaitPreprocessor())
},
},
})
```

In your spec files you can use `value = await cy...` instead of `cy....then(value => )`

```js
it('shows the number of projects', async () => {
await cy.visit('/')
const n = await cy.get('#projects-count').invoke('text').then(parseInt)
cy.log(n)
expect(n, 'number of projects').to.be.within(350, 400)
})
```

The above code is equivalent to the "plain" Cypress test

```js
it('shows the number of projects', () => {
cy.visit('/')
cy.get('#projects-count')
.invoke('text')
.then(parseInt)
.then((n) => {
cy.log(n)
expect(n, 'number of projects').to.be.within(350, 400)
})
})
```

## Preprocessor sync mode

It might seem redundant to always write `n = await cy...`, thus there is a "sync" mode preprocessor where you can write the spec code without using `await` before each Cypress chain.

```js
// cypress.config.js
const { defineConfig } = require('cypress')
// https://github.com/bahmutov/cypress-await
const cyAwaitPreprocessor = require('cypress-await/src/preprocessor-sync-mode')

module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
on('file:preprocessor', cyAwaitPreprocessor())
},
},
})
```

We can get the parsed number of projects from the page

```js
it('shows the number of projects', () => {
cy.visit('/')
const n = cy.get('#projects-count').invoke('text').then(parseInt)
cy.log(n)
expect(n, 'number of projects').to.be.within(350, 400)
})
```

## Transform some spec files

You can apply this preprocessor only to some specs using [minimatch](https://github.com/isaacs/minimatch) over the full spec source filepath

```js
setupNodeEvents(on, config) {
on('file:preprocessor', cyAwaitPreprocessor({
specPattern: '**/*.sync.cy.js'
}))
}
```

For simplicity, you can also use the end of the files that need to be transpiled. For example, to transpile all files that end with `.sync.cy.js`, you can use `specPattern: '.sync.cy.js'`

## Show transpiled output

Set the preprocessor with the `debugOutput: true` option

```js
setupNodeEvents(on, config) {
on('file:preprocessor', cyAwaitPreprocessor({
debugOutput: true
}))
}
```

The transpiled output will appear in the terminal.

## Debugging

Start Cypress with OS environment variable `DEBUG=cypress-await`

```
# on Mac or Linux
$ DEBUG=cypress-await npx cypress open
```

To see even more output enable the verbose debug logs with `DEBUG=cypress-await:verbose`

```
# on Mac or Linux
$ DEBUG=cypress-await:verbose npx cypress open
```

## Small print

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

- [@bahmutov](https://twitter.com/bahmutov)
- [glebbahmutov.com](https://glebbahmutov.com)
- [blog](https://glebbahmutov.com/blog)
- [videos](https://www.youtube.com/glebbahmutov)
- [presentations](https://slides.com/bahmutov)
- [cypress.tips](https://cypress.tips)
- [Cypress Tips & Tricks Newsletter](https://cypresstips.substack.com/)
- [my Cypress courses](https://cypress.tips/courses)

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/cy-await/issues) on Github

## MIT License

Copyright (c) 2023 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.