cypress-on-rails 1.18.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/claude-code-review.yml +57 -0
- data/.github/workflows/claude.yml +50 -0
- data/CHANGELOG.md +319 -98
- data/README.md +93 -1
- data/RELEASING.md +200 -0
- data/Rakefile +1 -4
- data/cypress-on-rails.gemspec +1 -0
- data/docs/BEST_PRACTICES.md +678 -0
- data/docs/DX_IMPROVEMENTS.md +163 -0
- data/docs/PLAYWRIGHT_GUIDE.md +554 -0
- data/docs/RELEASE.md +124 -0
- data/docs/TROUBLESHOOTING.md +351 -0
- data/docs/VCR_GUIDE.md +499 -0
- data/lib/cypress_on_rails/configuration.rb +24 -0
- data/lib/cypress_on_rails/railtie.rb +7 -0
- data/lib/cypress_on_rails/server.rb +197 -0
- data/lib/cypress_on_rails/state_reset_middleware.rb +58 -0
- data/lib/cypress_on_rails/version.rb +1 -1
- data/lib/generators/cypress_on_rails/templates/config/initializers/cypress_on_rails.rb.erb +12 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_factory_bot.cy.js +2 -2
- data/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_scenarios.cy.js +1 -1
- data/lib/generators/cypress_on_rails/templates/spec/cypress/support/on-rails.js +1 -1
- data/lib/tasks/cypress.rake +33 -0
- data/rakelib/release.rake +80 -0
- data/rakelib/task_helpers.rb +23 -0
- data/rakelib/update_changelog.rake +63 -0
- metadata +31 -2
data/CHANGELOG.md
CHANGED
@@ -1,245 +1,466 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
This project adheres to [Semantic Versioning](https://semver.org/).
|
5
|
+
|
6
|
+
---
|
7
|
+
|
8
|
+
## [Unreleased]
|
9
|
+
|
10
|
+
### Added
|
11
|
+
* **Rake tasks for test execution**: Added `cypress:open` and `cypress:run` rake tasks for seamless test execution, similar to cypress-rails functionality. Also added `playwright:open` and `playwright:run` tasks.
|
12
|
+
* **Server lifecycle hooks**: Added configuration hooks for test server management:
|
13
|
+
- `before_server_start`: Run code before Rails server starts
|
14
|
+
- `after_server_start`: Run code after Rails server is ready
|
15
|
+
- `after_transaction_start`: Run code after database transaction begins
|
16
|
+
- `after_state_reset`: Run code after application state is reset
|
17
|
+
- `before_server_stop`: Run code before Rails server stops
|
18
|
+
* **State reset endpoint**: Added `/cypress_rails_reset_state` and `/__cypress__/reset_state` endpoints for compatibility with cypress-rails
|
19
|
+
* **Transactional test mode**: Added support for automatic database transaction rollback between tests
|
20
|
+
* **Environment configuration**: Support for `CYPRESS_RAILS_HOST` and `CYPRESS_RAILS_PORT` environment variables
|
21
|
+
* **Automatic server management**: Test server automatically starts and stops with test execution
|
22
|
+
|
23
|
+
### Migration Guide
|
24
|
+
|
25
|
+
#### From Manual Server Management (Old Way)
|
26
|
+
If you were previously running tests manually:
|
27
|
+
|
28
|
+
**Before (Manual Process):**
|
29
|
+
```bash
|
30
|
+
# Terminal 1: Start Rails server
|
31
|
+
CYPRESS=1 bin/rails server -p 5017
|
32
|
+
|
33
|
+
# Terminal 2: Run tests
|
34
|
+
yarn cypress open --project ./e2e
|
35
|
+
# or
|
36
|
+
npx cypress run --project ./e2e
|
37
|
+
```
|
38
|
+
|
39
|
+
**After (Automated with Rake Tasks):**
|
40
|
+
```bash
|
41
|
+
# Single command - server managed automatically!
|
42
|
+
bin/rails cypress:open
|
43
|
+
# or
|
44
|
+
bin/rails cypress:run
|
45
|
+
```
|
46
|
+
|
47
|
+
#### From cypress-rails Gem
|
48
|
+
If migrating from the `cypress-rails` gem:
|
49
|
+
|
50
|
+
1. Update your Gemfile:
|
51
|
+
```ruby
|
52
|
+
# Remove
|
53
|
+
gem 'cypress-rails'
|
54
|
+
|
55
|
+
# Add
|
56
|
+
gem 'cypress-on-rails', '~> 1.0'
|
57
|
+
```
|
58
|
+
|
59
|
+
2. Run bundle and generator:
|
60
|
+
```bash
|
61
|
+
bundle install
|
62
|
+
rails g cypress_on_rails:install
|
63
|
+
```
|
64
|
+
|
65
|
+
3. Configure hooks in `config/initializers/cypress_on_rails.rb` (optional):
|
66
|
+
```ruby
|
67
|
+
CypressOnRails.configure do |c|
|
68
|
+
# These hooks match cypress-rails functionality
|
69
|
+
c.before_server_start = -> { DatabaseCleaner.clean }
|
70
|
+
c.after_server_start = -> { Rails.application.load_seed }
|
71
|
+
c.transactional_server = true
|
72
|
+
end
|
73
|
+
```
|
74
|
+
|
75
|
+
4. Use the same commands you're familiar with:
|
76
|
+
```bash
|
77
|
+
bin/rails cypress:open
|
78
|
+
bin/rails cypress:run
|
79
|
+
```
|
80
|
+
|
81
|
+
---
|
82
|
+
|
83
|
+
## [1.18.0] — 2025-08-27
|
84
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.17.0...v1.18.0
|
85
|
+
|
86
|
+
### Added
|
87
|
+
* **VCR middleware (use_cassette)**: optional middleware that wraps each request with `VCR.use_cassette` (GraphQL supported). Includes configuration via `config/cypress_on_rails.rb` and Cypress commands. [PR 167]
|
88
|
+
* **Rails 8 example app & CI job** to validate against the newest framework version. [PR 174]
|
89
|
+
|
90
|
+
### Changed
|
91
|
+
* **Rails 7.2 example app** updates and CI wiring. [PR 171]
|
92
|
+
* Updated JetBrains logo/assets in README. [PR 177]
|
93
|
+
|
94
|
+
### Removed
|
95
|
+
* Dropped Rails 4 and 5 from CI matrix. [PR 172]
|
96
|
+
|
97
|
+
---
|
98
|
+
|
99
|
+
## [1.17.0] — 2024-01-28
|
100
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.16.0...v1.17.0
|
3
101
|
|
4
102
|
### Changed
|
5
|
-
* Removed the update generator and reduced options for install generator [PR 149]
|
103
|
+
* Removed the update generator and reduced options for install generator [PR 149]
|
6
104
|
|
7
105
|
### Fixed
|
8
|
-
*
|
9
|
-
* Support
|
10
|
-
* Rewind body before reading it [PR 150]
|
106
|
+
* Fix update `index.js` in install generator [PR 147] by [Judahmeek]
|
107
|
+
* Support Rails 7.1 by adding `content-type` header to generated `on-rails.js` file [PR 148] by [anark]
|
108
|
+
* Rewind body before reading it [PR 150]
|
109
|
+
|
110
|
+
---
|
11
111
|
|
12
112
|
## [1.16.0]
|
13
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.15.1...v1.16.0
|
113
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.15.1...v1.16.0
|
14
114
|
|
15
115
|
### Added
|
16
|
-
* Add support for `before_request` options on the middleware, for authentication [PR 138]
|
116
|
+
* Add support for `before_request` options on the middleware, for authentication [PR 138] by [RomainEndelin]
|
117
|
+
|
118
|
+
---
|
17
119
|
|
18
120
|
## [1.15.1]
|
19
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.15.0...v1.15.1
|
121
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.15.0...v1.15.1
|
20
122
|
|
21
123
|
### Fixed
|
22
|
-
*
|
124
|
+
* Fix `cypress_folder` deprecation warning by internal code [PR 136]
|
125
|
+
|
126
|
+
---
|
23
127
|
|
24
128
|
## [1.15.0]
|
25
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.14.0...v1.15.0
|
129
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.14.0...v1.15.0
|
26
130
|
|
27
131
|
### Changed
|
28
|
-
* Add support for any e2e testing
|
132
|
+
* Add support for any e2e testing framework starting with Playwright [PR 131] by [KhaledEmaraDev]
|
133
|
+
|
134
|
+
---
|
29
135
|
|
30
136
|
## [1.14.0]
|
31
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.13.1...v1.14.0
|
137
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.13.1...v1.14.0
|
32
138
|
|
33
139
|
### Changed
|
34
|
-
* Add support for proxy routes through `api_prefix` [PR 130]
|
140
|
+
* Add support for proxy routes through `api_prefix` [PR 130] by [RomainEndelin]
|
35
141
|
|
36
142
|
### Fixed
|
37
|
-
* Properly copies the cypress_helper file when running the update generator [PR 117]
|
143
|
+
* Properly copies the cypress_helper file when running the update generator [PR 117] by [alvincrespo]
|
38
144
|
|
39
145
|
### Tasks
|
40
|
-
*
|
146
|
+
* Pass Cypress record key to GitHub Action [PR 110]
|
147
|
+
|
148
|
+
---
|
41
149
|
|
42
150
|
## [1.13.1]
|
43
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.13.0...v1.13.1
|
151
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.13.0...v1.13.1
|
44
152
|
|
45
153
|
### Fixed
|
46
|
-
* use_vcr_middleware disabled by default [PR 109]
|
154
|
+
* `use_vcr_middleware` disabled by default [PR 109]
|
155
|
+
|
156
|
+
---
|
47
157
|
|
48
158
|
## [1.13.0]
|
49
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.12.1...v1.13.0
|
159
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.12.1...v1.13.0
|
50
160
|
|
51
161
|
### Changed
|
52
162
|
* Add support for matching npm package and VCR
|
53
|
-
*
|
163
|
+
* Generate for Cypress 10 [PR 108]
|
164
|
+
|
165
|
+
---
|
54
166
|
|
55
167
|
## [1.12.1]
|
56
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.12.0...v1.12.1
|
168
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.12.0...v1.12.1
|
57
169
|
|
58
170
|
### Tasks
|
59
|
-
*
|
171
|
+
* Document how to setup Factory Associations [PR 100]
|
60
172
|
|
61
173
|
### Fixed
|
62
|
-
*
|
174
|
+
* Keep track of factory manual reloads to prevent auto_reload from reloading again [PR 98]
|
175
|
+
|
176
|
+
---
|
63
177
|
|
64
178
|
## [1.12.0]
|
65
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.11.0...v1.12.0
|
179
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.11.0...v1.12.0
|
66
180
|
|
67
181
|
### Changed
|
68
|
-
*
|
69
|
-
*
|
182
|
+
* Only reload factories on clean instead of every factory create request [PR 95]
|
183
|
+
* Alternative command added for get tail of logs [PR 89] by [ccrockett]
|
70
184
|
|
71
185
|
### Tasks
|
72
|
-
*
|
186
|
+
* Switch from Travis to GitHub Actions [PR 96]
|
187
|
+
|
188
|
+
---
|
73
189
|
|
74
190
|
## [1.11.0]
|
75
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.10.1...v1.11.0
|
191
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.10.1...v1.11.0
|
76
192
|
|
77
193
|
### Changed
|
78
|
-
*
|
79
|
-
* Allow build and build_list commands to be executed against
|
194
|
+
* Improve app command logging on Cypress
|
195
|
+
* Allow build and build_list commands to be executed against FactoryBot [PR 87] by [Alexander-Blair]
|
196
|
+
|
197
|
+
---
|
80
198
|
|
81
199
|
## [1.10.1]
|
82
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.9.1...v1.10.1
|
200
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.9.1...v1.10.1
|
83
201
|
|
84
202
|
### Changed
|
85
|
-
*
|
203
|
+
* Improve error message received from failed command
|
204
|
+
|
205
|
+
---
|
86
206
|
|
87
207
|
## [1.9.1]
|
88
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.9.0...v1.9.1
|
208
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.9.0...v1.9.1
|
89
209
|
|
90
210
|
### Fixed
|
91
|
-
*
|
211
|
+
* Fix using `load` in command files
|
212
|
+
|
213
|
+
---
|
92
214
|
|
93
215
|
## [1.9.0]
|
94
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.8.1...v1.9.0
|
216
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.8.1...v1.9.0
|
95
217
|
|
96
218
|
### Changed
|
97
|
-
* Update default generated folder to cypress instead of spec/cypress
|
98
|
-
* Add a generator option to not install
|
99
|
-
*
|
100
|
-
*
|
219
|
+
* Update default generated folder to `cypress` instead of `spec/cypress`
|
220
|
+
* Add a generator option to not install Cypress
|
221
|
+
* Generator by default does not include examples
|
222
|
+
* Default on local to run Cypress in development mode
|
223
|
+
|
224
|
+
---
|
101
225
|
|
102
226
|
## [1.8.1]
|
103
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.8.0...v1.8.1
|
227
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.8.0...v1.8.1
|
104
228
|
|
105
229
|
### Fixed
|
106
|
-
*
|
107
|
-
*
|
230
|
+
* Remove `--silent` option when adding Cypress [PR 76]
|
231
|
+
* Update Cypress examples to use "preserve" instead of "whitelist" [PR 75] by [alvincrespo]
|
232
|
+
|
233
|
+
---
|
108
234
|
|
109
235
|
## [1.8.0]
|
110
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.7.0...v1.8.0
|
236
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.7.0...v1.8.0
|
111
237
|
|
112
238
|
### Changed
|
113
|
-
* Use `
|
239
|
+
* Use `FactoryBot#reload` to reset FactoryBot
|
240
|
+
|
241
|
+
---
|
114
242
|
|
115
243
|
## [1.7.0]
|
116
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.6.0...v1.7.0
|
244
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.6.0...v1.7.0
|
117
245
|
|
118
246
|
### Changed
|
119
|
-
*
|
247
|
+
* Improve eval() in command executor [PR 46] by [Systho]
|
120
248
|
|
121
249
|
### Fixed
|
122
|
-
* Add middleware after load_config_initializers [PR 62]
|
250
|
+
* Add middleware after load_config_initializers [PR 62] by [duytd]
|
251
|
+
|
252
|
+
---
|
123
253
|
|
124
254
|
## [1.6.0]
|
125
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.5.1...v1.6.0
|
255
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.5.1...v1.6.0
|
126
256
|
|
127
257
|
### Changed
|
128
|
-
* Change default port to 5017 [PR 49]
|
258
|
+
* Change default port to 5017 [PR 49] by [vfonic]
|
129
259
|
|
130
260
|
### Fixed
|
131
|
-
*
|
261
|
+
* Fix file location warning message in clean.rb [PR 54] by [ootoovak]
|
262
|
+
|
263
|
+
---
|
132
264
|
|
133
265
|
## [1.5.1]
|
134
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.5.0...v1.5.1
|
266
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.5.0...v1.5.1
|
135
267
|
|
136
268
|
### Fixed
|
137
|
-
*
|
269
|
+
* Fix FactoryBot Trait not registered error [PR 43]
|
270
|
+
|
271
|
+
---
|
138
272
|
|
139
273
|
## [1.5.0]
|
140
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.2...v1.5.0
|
274
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.2...v1.5.0
|
141
275
|
|
142
276
|
### Added
|
143
|
-
* Serialize and return responses to be used in tests [PR 34]
|
144
|
-
* Update generator to make it easier to update core generated files [PR 35]
|
277
|
+
* Serialize and return responses to be used in tests [PR 34]
|
278
|
+
* Update generator to make it easier to update core generated files [PR 35]
|
145
279
|
|
146
280
|
### Tasks
|
147
|
-
* Update integration tests [PR 36]
|
281
|
+
* Update integration tests [PR 36]
|
282
|
+
|
283
|
+
---
|
148
284
|
|
149
285
|
## [1.4.2]
|
150
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.1...v1.4.2
|
286
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.1...v1.4.2
|
151
287
|
|
152
288
|
### Fixed
|
153
|
-
*
|
289
|
+
* Update generator to use full paths for Factory files [PR 33]
|
290
|
+
|
291
|
+
---
|
154
292
|
|
155
293
|
## [1.4.1]
|
156
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.0...v1.4.1
|
294
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.0...v1.4.1
|
157
295
|
|
158
296
|
### Fixed
|
159
|
-
*
|
297
|
+
* Fix install generator when using npm [PR 22] by [josephan]
|
160
298
|
|
161
299
|
### Tasks
|
162
|
-
* Fix typo in authentication docs [PR 29]
|
163
|
-
* Gemspec: Drop EOL'd property rubyforge_project [PR 27]
|
164
|
-
* Update Travis CI badge in README [PR 31]
|
165
|
-
* Fix CI by
|
300
|
+
* Fix typo in authentication docs [PR 29] by [badimalex]
|
301
|
+
* Gemspec: Drop EOL'd property `rubyforge_project` [PR 27] by [olleolleolle]
|
302
|
+
* Update Travis CI badge in README [PR 31]
|
303
|
+
* Fix CI by installing Cypress dependencies on Travis CI [PR 31]
|
304
|
+
|
305
|
+
---
|
166
306
|
|
167
307
|
## [1.4.0]
|
168
|
-
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.3.0...v1.4.0
|
308
|
+
[Compare]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.3.0...v1.4.0
|
169
309
|
|
170
|
-
* Accept an options argument for scenarios
|
310
|
+
* Accept an options argument for scenarios [PR 18] by [ericraio]
|
171
311
|
|
172
312
|
### Changed
|
173
|
-
*
|
313
|
+
* Renamed CypressDev to CypressOnRails
|
314
|
+
|
315
|
+
---
|
174
316
|
|
175
317
|
## [1.3.0]
|
176
318
|
### Added
|
177
|
-
* Send any arguments to simple
|
319
|
+
* Send any arguments to simple Rails factory, not only hashes by [grantspeelman]
|
178
320
|
|
179
321
|
### Improved
|
180
|
-
*
|
322
|
+
* Stop running Cypress examples on CI
|
323
|
+
|
324
|
+
---
|
181
325
|
|
182
326
|
## [1.2.1]
|
183
327
|
### Fixed
|
184
|
-
*
|
328
|
+
* Simple factory fails silently, changed to use `create!`
|
329
|
+
|
330
|
+
---
|
185
331
|
|
186
332
|
## [1.2.0]
|
187
333
|
### Tasks
|
188
|
-
*
|
334
|
+
* Add additional log failure logging
|
335
|
+
|
336
|
+
---
|
189
337
|
|
190
338
|
## [1.1.1]
|
191
339
|
### Fixed
|
192
|
-
*
|
340
|
+
* Smart factory wrapper can handle when factory files get deleted
|
341
|
+
|
342
|
+
---
|
193
343
|
|
194
344
|
## [1.1.0]
|
195
345
|
### Tasks
|
196
|
-
*
|
197
|
-
*
|
346
|
+
* Add Cypress examples to install generator
|
347
|
+
* Add ActiveRecord integration specs
|
348
|
+
|
349
|
+
---
|
198
350
|
|
199
351
|
## 1.0.1
|
200
352
|
### Fixed
|
201
|
-
*
|
353
|
+
* Install generator adding `on-rails.js` to `import.js`
|
354
|
+
|
355
|
+
---
|
202
356
|
|
203
357
|
## 1.0.0
|
204
|
-
*
|
205
|
-
*
|
206
|
-
*
|
207
|
-
*
|
358
|
+
* Renamed to CypressDev
|
359
|
+
* Middleware stripped down to make it more flexible and generic
|
360
|
+
* Concept of generic commands introduced that can have any Ruby in it
|
361
|
+
* And lots of other changes
|
362
|
+
|
363
|
+
---
|
208
364
|
|
209
365
|
## 0.2.2 (2018-03-24)
|
210
366
|
### Fixed
|
211
|
-
*
|
367
|
+
* Fix major bug when using scenarios
|
368
|
+
|
369
|
+
---
|
212
370
|
|
213
371
|
## 0.2.1 (2017-11-05)
|
214
372
|
### Fixed
|
215
|
-
*
|
373
|
+
* Fix failure in API tests
|
374
|
+
|
375
|
+
---
|
216
376
|
|
217
377
|
## 0.2.0 (2017-11-05)
|
218
378
|
### Changed
|
219
|
-
*
|
379
|
+
* Remove the need for a separate port for the setup calls. Requires rerunning `cypress:install` generator
|
220
380
|
|
221
|
-
|
381
|
+
---
|
222
382
|
|
383
|
+
## 0.1.5 (2017-11-01)
|
223
384
|
### Added
|
224
|
-
* `cy.rails` command for executing raw
|
385
|
+
* `cy.rails` command for executing raw Ruby on the backend
|
225
386
|
* `cy.setupRails` command for resetting application state
|
226
387
|
* `cypress:install` generator now adds a `beforeEach` call to `cy.setupRails`
|
227
388
|
* `cypress:install` generator configures the `cache_classes` setting in `config/environments/test.rb`
|
228
|
-
*
|
389
|
+
* Configuration option to include further modules in your runcontext
|
390
|
+
|
391
|
+
---
|
229
392
|
|
230
393
|
## 0.1.2 (2017-10-31)
|
231
394
|
* First release.
|
232
395
|
|
233
|
-
|
234
|
-
|
235
|
-
[
|
236
|
-
[
|
237
|
-
[
|
238
|
-
[
|
239
|
-
[
|
240
|
-
[
|
241
|
-
[
|
242
|
-
[
|
243
|
-
[
|
244
|
-
[
|
245
|
-
[
|
396
|
+
---
|
397
|
+
|
398
|
+
[PR 167]: https://github.com/shakacode/cypress-playwright-on-rails/pull/167
|
399
|
+
[PR 174]: https://github.com/shakacode/cypress-playwright-on-rails/pull/174
|
400
|
+
[PR 171]: https://github.com/shakacode/cypress-playwright-on-rails/pull/171
|
401
|
+
[PR 177]: https://github.com/shakacode/cypress-playwright-on-rails/pull/177
|
402
|
+
[PR 172]: https://github.com/shakacode/cypress-playwright-on-rails/pull/172
|
403
|
+
[PR 149]: https://github.com/shakacode/cypress-playwright-on-rails/pull/149
|
404
|
+
[PR 147]: https://github.com/shakacode/cypress-playwright-on-rails/pull/147
|
405
|
+
[PR 148]: https://github.com/shakacode/cypress-playwright-on-rails/pull/148
|
406
|
+
[PR 150]: https://github.com/shakacode/cypress-playwright-on-rails/pull/150
|
407
|
+
[PR 138]: https://github.com/shakacode/cypress-playwright-on-rails/pull/138
|
408
|
+
[PR 136]: https://github.com/shakacode/cypress-playwright-on-rails/pull/136
|
409
|
+
[PR 131]: https://github.com/shakacode/cypress-playwright-on-rails/pull/131
|
410
|
+
[PR 130]: https://github.com/shakacode/cypress-playwright-on-rails/pull/130
|
411
|
+
[PR 117]: https://github.com/shakacode/cypress-playwright-on-rails/pull/117
|
412
|
+
[PR 110]: https://github.com/shakacode/cypress-playwright-on-rails/pull/110
|
413
|
+
[PR 109]: https://github.com/shakacode/cypress-playwright-on-rails/pull/109
|
414
|
+
[PR 108]: https://github.com/shakacode/cypress-playwright-on-rails/pull/108
|
415
|
+
[PR 100]: https://github.com/shakacode/cypress-playwright-on-rails/pull/100
|
416
|
+
[PR 98]: https://github.com/shakacode/cypress-playwright-on-rails/pull/98
|
417
|
+
[PR 95]: https://github.com/shakacode/cypress-playwright-on-rails/pull/95
|
418
|
+
[PR 89]: https://github.com/shakacode/cypress-playwright-on-rails/pull/89
|
419
|
+
[PR 96]: https://github.com/shakacode/cypress-playwright-on-rails/pull/96
|
420
|
+
[PR 87]: https://github.com/shakacode/cypress-playwright-on-rails/pull/87
|
421
|
+
[PR 76]: https://github.com/shakacode/cypress-playwright-on-rails/pull/76
|
422
|
+
[PR 75]: https://github.com/shakacode/cypress-playwright-on-rails/pull/75
|
423
|
+
[PR 46]: https://github.com/shakacode/cypress-playwright-on-rails/pull/46
|
424
|
+
[PR 62]: https://github.com/shakacode/cypress-playwright-on-rails/pull/62
|
425
|
+
[PR 49]: https://github.com/shakacode/cypress-playwright-on-rails/pull/49
|
426
|
+
[PR 54]: https://github.com/shakacode/cypress-playwright-on-rails/pull/54
|
427
|
+
[PR 43]: https://github.com/shakacode/cypress-playwright-on-rails/pull/43
|
428
|
+
[PR 34]: https://github.com/shakacode/cypress-playwright-on-rails/pull/34
|
429
|
+
[PR 35]: https://github.com/shakacode/cypress-playwright-on-rails/pull/35
|
430
|
+
[PR 36]: https://github.com/shakacode/cypress-playwright-on-rails/pull/36
|
431
|
+
[PR 33]: https://github.com/shakacode/cypress-playwright-on-rails/pull/33
|
432
|
+
[PR 22]: https://github.com/shakacode/cypress-playwright-on-rails/pull/22
|
433
|
+
[PR 29]: https://github.com/shakacode/cypress-playwright-on-rails/pull/29
|
434
|
+
[PR 27]: https://github.com/shakacode/cypress-playwright-on-rails/pull/27
|
435
|
+
[PR 31]: https://github.com/shakacode/cypress-playwright-on-rails/pull/31
|
436
|
+
[PR 18]: https://github.com/shakacode/cypress-playwright-on-rails/pull/18
|
437
|
+
|
438
|
+
<!-- Version diff reference list -->
|
439
|
+
[1.18.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.17.0...v1.18.0
|
440
|
+
[1.17.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.16.0...v1.17.0
|
441
|
+
[1.16.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.15.1...v1.16.0
|
442
|
+
[1.15.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.15.0...v1.15.1
|
443
|
+
[1.15.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.14.0...v1.15.0
|
444
|
+
[1.14.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.13.1...v1.14.0
|
445
|
+
[1.13.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.13.0...v1.13.1
|
446
|
+
[1.13.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.12.1...v1.13.0
|
447
|
+
[1.12.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.12.0...v1.12.1
|
448
|
+
[1.12.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.11.0...v1.12.0
|
449
|
+
[1.11.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.10.1...v1.11.0
|
450
|
+
[1.10.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.9.1...v1.10.1
|
451
|
+
[1.9.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.9.0...v1.9.1
|
452
|
+
[1.9.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.8.1...v1.9.0
|
453
|
+
[1.8.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.8.0...v1.8.1
|
454
|
+
[1.8.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.7.0...v1.8.0
|
455
|
+
[1.7.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.6.0...v1.7.0
|
456
|
+
[1.6.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.5.1...v1.6.0
|
457
|
+
[1.5.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.5.0...v1.5.1
|
458
|
+
[1.5.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.2...v1.5.0
|
459
|
+
[1.4.2]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.1...v1.4.2
|
460
|
+
[1.4.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.4.0...v1.4.1
|
461
|
+
[1.4.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.3.0...v1.4.0
|
462
|
+
[1.3.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.2.1...v1.3.0
|
463
|
+
[1.2.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.2.0...v1.2.1
|
464
|
+
[1.2.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.1.1...v1.2.0
|
465
|
+
[1.1.1]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.1.0...v1.1.1
|
466
|
+
[1.1.0]: https://github.com/shakacode/cypress-playwright-on-rails/compare/v1.0.0...v1.1.0
|