Skip to content

Commit

Permalink
Replace diagnostics with a more proper dry-run
Browse files Browse the repository at this point in the history
This is "more proper" in the sense that it's still executing tests an
actual Cypress environments, while still being reasonably quick.

This is related to #1120 [1].

This closes #1129 [2].

[1] #1120
[2] #1129
  • Loading branch information
badeball committed Sep 24, 2024
1 parent c226178 commit a15d0dd
Show file tree
Hide file tree
Showing 42 changed files with 1,378 additions and 1,204 deletions.
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ Breaking changes:

- User of `@badeball/cypress-cucumber-preprocessor/browserify` should change their Cypress config in accordance with the related [examples](examples).

- The executable `cypress-cucumber-diagnostics` no longer respect flags such as `--project` or `--env`. The long-term plan is to rewamp dry run altogether, and run it in a Cypress environment.

- `esbuild` is now an optional peer dependency. This is relevant for users using `esbuild` as their bundler, as well as users of `cypress-cucumber-diagnostics`.
- The executable `cypress-cucumber-diagnostics` has been replaced by a [`dryRun` option](docs/dry-run.md).

Other changees:

Expand Down
6 changes: 6 additions & 0 deletions augmentations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import messages from "@cucumber/messages";

import { Registry } from "./lib/registry";

import { MochaGlobals } from "mocha";

declare module "@cucumber/cucumber" {
interface IWorld {
tmpDir: string;
Expand All @@ -25,6 +27,10 @@ declare global {
var __cypress_cucumber_preprocessor_registry_dont_use_this:
| Registry
| undefined;

var __cypress_cucumber_preprocessor_mocha_dont_use_this:
| Pick<MochaGlobals, "before" | "beforeEach" | "after" | "afterEach">
| undefined;
}

interface Window {
Expand Down
3 changes: 3 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,13 @@ Every configuration option has a similar key which can be use to override it, sh
| `json.output` | `jsonOutput` | `cucumber-report.json` |
| `html.enabled` | `htmlEnabled` | `true`, `false` |
| `html.output` | `htmlOutput` | `cucumber-report.html` |
| `usage.enabled` | `usageEnabled` | `true`, `false` |
| `usage.output` | `usageOutput` | `stdout` |
| `pretty.enabled` | `prettyEnabled` | `true`, `false` |
| `filterSpecsMixedMode` | `filterSpecsMixedMode` | `hide`, `show`, `empty-set` |
| `filterSpecs` | `filterSpecs` | `true`, `false` |
| `omitFiltered` | `omitFiltered` | `true`, `false` |
| `dryRun` | `dryRun` | `true`, `false` |

## Test configuration

Expand Down
39 changes: 0 additions & 39 deletions docs/diagnostics.md

This file was deleted.

15 changes: 15 additions & 0 deletions docs/dry-run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[← Back to documentation](readme.md)

# Dry run

Dry run is a run mode in which no steps or any type of hooks are executed. A few examples where this is useful:

- Finding unused step definitions with [usage reports](usage-report.md)
- Generating snippets for all undefined steps
- Checking if your path, tag expression, etc. matches the scenarios you expect it to

Dry run can be enabled using `dryRun`, like seen below.

```
$ cypress run --env dryRun=true
```
4 changes: 3 additions & 1 deletion docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
* [Step definitions](step-definitions.md)
* [Tags](tags.md)
* [Pretty output](pretty-output.md)
* [Source maps](source-maps.md)
* [Dry run](dry-run.md)
* Reports
* [Messages report](messages-report.md)
* [JSON report](json-report.md)
* [HTML report](html-report.md)
* [Usage report](usage-report.md)
* [Localisation](localisation.md)
* [Configuration](configuration.md)
* [Test configuration](test-configuration.md)
* CLI utilities
* [Diagnostics / dry run](diagnostics.md)
* [JSON formatter](json-formatter.md)
* [HTML formatter](html-formatter.md)
* [Parallelization using Cypress Cloud & merging reports](merging-reports.md)
Expand Down
50 changes: 50 additions & 0 deletions docs/source-maps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[← Back to documentation](readme.md)

# Source maps

How to enable source maps for each bundler is shown below.

## esbuild

```js
const { defineConfig } = require("cypress");
const createBundler = require("@bahmutov/cypress-esbuild-preprocessor");
const {
addCucumberPreprocessorPlugin,
} = require("@badeball/cypress-cucumber-preprocessor");
const {
createEsbuildPlugin,
} = require("@badeball/cypress-cucumber-preprocessor/esbuild");

async function setupNodeEvents(on, config) {
// This is required for the preprocessor to be able to generate JSON reports after each run, and more,
await addCucumberPreprocessorPlugin(on, config);

on(
"file:preprocessor",
createBundler({
plugins: [createEsbuildPlugin(config)],
sourcemap: "inline"
})
);

// Make sure to return the config object as it might have been modified by the plugin.
return config;
}

module.exports = defineConfig({
e2e: {
baseUrl: "https://duckduckgo.com",
specPattern: "**/*.feature",
setupNodeEvents,
},
});
```

## Webpack

Source maps are enabled by default.

## Browserify

Source maps are enabled by default.
45 changes: 45 additions & 0 deletions docs/usage-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[← Back to documentation](readme.md)

# Usage reports

> :warning: This requires you to have [source maps](source-maps.md) enabled.
The usage report lists your step definitions and tells you about usages in your scenarios, including the duration of each usage, and any unused steps. Here's an example of the output:

```
┌───────────────────────────────────────┬──────────┬─────────────────────────────────┐
│ Pattern / Text │ Duration │ Location │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ an empty todo list │ 760.33ms │ support/steps/steps.ts:6 │
│ an empty todo list │ 820ms │ features/empty.feature:4 │
│ an empty todo list │ 761ms │ features/adding-todos.feature:4 │
│ an empty todo list │ 700ms │ features/empty.feature:4 │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ I add the todo {string} │ 432.00ms │ support/steps/steps.ts:10 │
│ I add the todo "buy some cheese" │ 432ms │ features/adding-todos.feature:5 │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ my cursor is ready to create a todo │ 53.00ms │ support/steps/steps.ts:27 │
│ my cursor is ready to create a todo │ 101ms │ features/empty.feature:10 │
│ my cursor is ready to create a todo │ 5ms │ features/adding-todos.feature:8 │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ no todos are listed │ 46.00ms │ support/steps/steps.ts:15 │
│ no todos are listed │ 46ms │ features/empty.feature:7 │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ the todos are: │ 31.00ms │ support/steps/steps.ts:21 │
│ the todos are: │ 31ms │ features/adding-todos.feature:6 │
├───────────────────────────────────────┼──────────┼─────────────────────────────────┤
│ I remove the todo {string} │ UNUSED │ support/steps/steps.ts:33 │
└───────────────────────────────────────┴──────────┴─────────────────────────────────┘
```

Usage reports can be enabled using the `usage.enabled` property. The preprocessor uses [cosmiconfig](https://github.com/davidtheclark/cosmiconfig), which means you can place configuration options in EG. `.cypress-cucumber-preprocessorrc.json` or `package.json`. An example configuration is shown below.

```json
{
"usage": {
"enabled": true
}
}
```

The report is outputted to stdout (your console) by default, but can be configured to be written to a file through the `usage.output` property.
3 changes: 1 addition & 2 deletions examples/esbuild-cjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "latest",
"@bahmutov/cypress-esbuild-preprocessor": "latest",
"cypress": "latest",
"esbuild": "latest"
"cypress": "latest"
}
}
3 changes: 1 addition & 2 deletions examples/esbuild-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "latest",
"@bahmutov/cypress-esbuild-preprocessor": "latest",
"cypress": "latest",
"esbuild": "latest"
"cypress": "latest"
}
}
1 change: 0 additions & 1 deletion examples/esbuild-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"@badeball/cypress-cucumber-preprocessor": "latest",
"@bahmutov/cypress-esbuild-preprocessor": "latest",
"cypress": "latest",
"esbuild": "latest",
"typescript": "latest"
}
}
Loading

0 comments on commit a15d0dd

Please sign in to comment.