artes 1.2.4 → 1.2.5
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/package.json
CHANGED
|
@@ -127,27 +127,27 @@ await context.page.goto("https://www.saucedemo.com/");
|
|
|
127
127
|
|
|
128
128
|
const hooksContent = `
|
|
129
129
|
export function BeforeStep() {
|
|
130
|
-
|
|
130
|
+
# hook for before each step
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
export function Before() {
|
|
134
|
-
|
|
134
|
+
# hook for before each test
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
export function BeforeAll() {
|
|
138
|
-
|
|
138
|
+
# hook for before all tests
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
export function AfterStep() {
|
|
142
|
-
|
|
142
|
+
# hook for after each step
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
export function After() {
|
|
146
|
-
|
|
146
|
+
# hook for after each test
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
export function AfterAll() {
|
|
150
|
-
|
|
150
|
+
# hook for after all tests
|
|
151
151
|
}
|
|
152
152
|
`;
|
|
153
153
|
|