# cypress-mail-commands

> TypeScript NPM Module Boilerplate

Latest version **0.0.5** (published 2021-02-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install cypress-mail-commands
pnpm add cypress-mail-commands
yarn add cypress-mail-commands
bun add cypress-mail-commands
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2021-02-05 |
| First published | 2021-01-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 9.2 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Stefan Probst |
| Maintainers | probststefan |
| Keywords | boilerplate, typescript |

## Links

- npm: https://www.npmjs.com/package/cypress-mail-commands
- Repository: https://github.com/uWynell/typescript-package-boilerplate
- Homepage: https://github.com/probststefan/cypress-mail-commands#readme
- Issues: https://github.com/probststefan/cypress-mail-commands/issues
- npm.io page: https://npm.io/package/cypress-mail-commands

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.21.1

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2021-02-05
- 0.0.4 — 2021-02-04
- 0.0.3 — 2021-02-02
- 0.0.2 — 2021-01-28
- 0.0.1 — 2021-01-28

## README

# Cypress Mail Commands

[![npm version](https://badge.fury.io/js/cypress-mail-commands.svg)](https://badge.fury.io/js/cypress-mail-commands)

## Installing

Install the module.

```bash
npm install cypress-mail-commands --save-dev
```

Add the following line to `cypress/support/index.js`.

```javascript
require('cypress-mail-commands');
```

### Type definitions

Import typescript definitions by adding them to your `tsconfig.json`. Add the cypress-mail-commands types before the Cypress types so intellisense will prefer the cypress-commands versions.

```json
"types": [
    "cypress-mail-commands",
    "cypress"
]
```

## TypeScript

The definition for `cy.linkFromMail` command is in [index.d.ts](index.d.ts) file. If you are using JavaScript, include the following line in our spec files

```js
// cypress/integration/my-spec.js
/// <reference types="@probststefan/cypress-mail-commands" />
```

With this line, you should have Intelligent Code Completion working in most IDEs and the TypeScript compiler should understand the `cy.linkFromMail` command.

---
_Source: https://npm.io/package/cypress-mail-commands · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
