@serenity-js/playwright-test 3.0.0-rc.45 → 3.0.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.
- package/CHANGELOG.md +8 -0
- package/README.md +5 -12
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.0.0](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.45...v3.0.0) (2023-03-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/playwright-test
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.0.0-rc.45](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.44...v3.0.0-rc.45) (2023-03-22)
|
|
7
15
|
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
_** This README is for Serenity/JS version 3.0-RC. Some links might not work yet as we're working on getting the new website and API docs ready. Thanks for your patience and support! **_
|
|
2
|
-
|
|
3
1
|
# Serenity/JS
|
|
4
2
|
|
|
5
3
|
[](https://www.linkedin.com/company/serenity-js)
|
|
@@ -7,17 +5,12 @@ _** This README is for Serenity/JS version 3.0-RC. Some links might not work yet
|
|
|
7
5
|
[](https://matrix.to/#/#serenity-js:gitter.im)
|
|
8
6
|
[](https://matrix.to/#/#serenity-js:gitter.im)
|
|
9
7
|
|
|
10
|
-
[Serenity/JS](https://serenity-js.org) is
|
|
11
|
-
of
|
|
12
|
-
|
|
13
|
-
Visit [serenity-js.org](https://serenity-js.org/) for the [latest tutorials](https://serenity-js.org/handbook/)
|
|
14
|
-
and [API docs](https://serenity-js.org/modules/), and follow [@SerenityJS](https://twitter.com/SerenityJS) and [@JanMolak](https://twitter.com/JanMolak) on Twitter for project updates.
|
|
15
|
-
|
|
16
|
-
### Learning Serenity/JS
|
|
8
|
+
[Serenity/JS](https://serenity-js.org) is an innovative framework designed to make acceptance and regression testing
|
|
9
|
+
of complex software systems faster, more collaborative and easier to scale.
|
|
17
10
|
|
|
18
|
-
To
|
|
11
|
+
To get started, check out the comprehensive [Serenity/JS Handbook](https://serenity-js.org/handbook), [API documentation](https://serenity-js.org/api/core), and [Serenity/JS project templates on GitHub](https://serenity-js.org/handbook/getting-started#serenityjs-project-templates).
|
|
19
12
|
|
|
20
|
-
If you have any questions, join
|
|
13
|
+
If you have any questions or just want to say hello, join the [Serenity/JS Community Chat](https://matrix.to/#/#serenity-js:gitter.im).
|
|
21
14
|
|
|
22
15
|
## Serenity/JS Playwright Test
|
|
23
16
|
|
|
@@ -93,7 +86,7 @@ To configure the name of your default actor, use the `defaultActorName` configur
|
|
|
93
86
|
// example.spec.ts
|
|
94
87
|
|
|
95
88
|
import { describe, it, test } from '@serenity-js/playwright-test' // import fixtures
|
|
96
|
-
import { Navigate, Page } from '@serenity-js/playwright' // import Screenplay Pattern
|
|
89
|
+
import { Navigate, Page } from '@serenity-js/playwright' // import Screenplay Pattern web APIs
|
|
97
90
|
import { Ensure, equals } from '@serenity-js/assertions' // import Screenplay Pattern assertion APIs
|
|
98
91
|
|
|
99
92
|
test.use({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/playwright-test",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Serenity/JS reporter and test APIs for Playwright Test",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@playwright/test": "^1.31.2",
|
|
48
|
-
"@serenity-js/core": "3.0.0
|
|
49
|
-
"@serenity-js/playwright": "3.0.0
|
|
50
|
-
"@serenity-js/web": "3.0.0
|
|
48
|
+
"@serenity-js/core": "3.0.0",
|
|
49
|
+
"@serenity-js/playwright": "3.0.0",
|
|
50
|
+
"@serenity-js/web": "3.0.0",
|
|
51
51
|
"deepmerge": "^4.3.1",
|
|
52
52
|
"tiny-types": "^1.19.1"
|
|
53
53
|
},
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"ts-node": "^10.9.1",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "1c2fffcabd725822e6c93fb4125f5830fa97f56d"
|
|
65
65
|
}
|