Skip to content

Commit d89441f

Browse files
committed
updated docs
1 parent b0df2e2 commit d89441f

File tree

3 files changed

+54
-7
lines changed

3 files changed

+54
-7
lines changed

docs/changelog.md

+49-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,53 @@ layout: Section
77

88
# Releases
99

10+
## 3.4.0
11+
12+
* **Updated to latest mocha and modern Cucumber**
13+
* **Allure plugin moved to [@codeceptjs/allure-legacy](https://github.com/codeceptjs/allure-legacy) package**. This happened because allure-commons package v1 was not updated and caused vulnarabilities. Fixes [#3422](https://github.com/codeceptjs/CodeceptJS/issues/3422). We don't plan to maintain allure v2 plugin so it's up to community to take this initiative. Current allure plugin will print a warning message without interfering the run, so it won't accidentally fail your builds.
14+
* Added ability to **[retry Before](https://codecept.io/basics/#retry-before), BeforeSuite, After, AfterSuite** hooks by **[davertmik](https://github.com/davertmik)**:
15+
```js
16+
Feature('flaky Before & BeforeSuite', { retryBefore: 2, retryBeforeSuite: 3 })
17+
```
18+
19+
* **Flexible [retries configuration](https://codecept.io/basics/#retry-configuration) introduced** by **[davertmik](https://github.com/davertmik)**:
20+
21+
```js
22+
retry: [
23+
{
24+
// enable this config only for flaky tests
25+
grep: '@flaky',
26+
Before: 3 // retry Before 3 times
27+
Scenario: 3 // retry Scenario 3 times
28+
},
29+
{
30+
// retry less when running slow tests
31+
grep: '@slow'
32+
Scenario: 1
33+
Before: 1
34+
}, {
35+
// retry all BeforeSuite 3 times
36+
BeforeSuite: 3
37+
}
38+
]
39+
```
40+
* **Flexible [timeout configuration](https://codecept.io/advanced/#timeout-configuration)** introduced by **[davertmik](https://github.com/davertmik)**:
41+
42+
```js
43+
timeout: [
44+
10, // default timeout is 10secs
45+
{ // but increase timeout for slow tests
46+
grep: '@slow',
47+
Feature: 50
48+
},
49+
]
50+
```
51+
52+
* JsDoc: Removed promise from `I.say`. See [#3535](https://github.com/codeceptjs/CodeceptJS/issues/3535) by **[danielrentz](https://github.com/danielrentz)**
53+
* **[Playwright]** `handleDownloads` requires now a filename param. See [#3511](https://github.com/codeceptjs/CodeceptJS/issues/3511) by **[PeterNgTr](https://github.com/PeterNgTr)**
54+
* **[WebDriver]** Added support for v8, removed support for webdriverio v5 and lower. See [#3578](https://github.com/codeceptjs/CodeceptJS/issues/3578) by **[PeterNgTr](https://github.com/PeterNgTr)**
55+
56+
1057
## 3.3.7
1158

1259
🛩️ Features
@@ -37,8 +84,8 @@ layout: Section
3784

3885
📖 Documentation
3986

40-
* Updated [Auickstart](https://codecept.io/quickstart/) with detailed explanation of questions in init
41-
* Added [Translation](/translations/) guide
87+
* Updated [Quickstart](https://codecept.io/quickstart/) with detailed explanation of questions in init
88+
* Added [Translation](/translation/) guide
4289
* Updated [TypeScript](https://bit.ly/3XIMq6n) guide for promise-based typings
4390
* Reordered guides list on a website
4491

docs/tutorial.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
permalink: /tutorial
3-
title: CodeceptJS Testing Tutorial: Create a Complete Test Suite
3+
title: CoeceptJS Complete Tutorial
44
---
55

6-
**[CodeceptJS](https://codecept.io) is a popular open-source testing framework** for JavaScript. It is designed to simplify writing and maintain end-to-end tests for web applications, using a readable and intuitive syntax. To run tests in browser it uses **[Playwright](https://playwright.dev)** library from Microsoft.
6+
# Tutorial: Writing Tests for Checkout Page
77

8-
CodeceptJS was started in 2015 and is widely used by organizations of all sizes, from startups to large enterprises.
8+
**[CodeceptJS](https://codecept.io) is a popular open-source testing framework** for JavaScript. It is designed to simplify writing and maintain end-to-end tests for web applications, using a readable and intuitive syntax. To run tests in browser it uses **[Playwright](https://playwright.dev)** by default but ca execute tests via WebDriver, Puppeteer or Appium.
99

1010
## Let's get CodeceptJS installed!
1111

@@ -266,6 +266,6 @@ By applying more and more cases you can test a website to all behaviors.
266266

267267
## Summary
268268

269-
This was a deep dive! If you think on just starting test automation, CodeceptJS is the best choice for you as it uses native language to pass commands to browser.
269+
If you think on just starting test automation, CodeceptJS is the best choice for you as it uses native language to pass commands to browser.
270270

271271
If you already skilled in JavaScript, with CodeceptJS you can focus on business level of your test, instead of writing code for browser. This way you can keep your tests stable and maintainable.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"testcafe": "^2.1.0",
132132
"ts-morph": "^3.1.3",
133133
"ts-node": "^10.9.1",
134-
"tsd-jsdoc": "https://github.com/englercj/tsd-jsdoc.git",
134+
"tsd-jsdoc": "^2.5.0",
135135
"typedoc": "^0.23.10",
136136
"typedoc-plugin-markdown": "^3.13.4",
137137
"typescript": "^4.8.4",

0 commit comments

Comments
 (0)