-
-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathfakerTransform.js
49 lines (48 loc) · 1.14 KB
/
fakerTransform.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const { faker } = require('@faker-js/faker')
const transform = require('../transform')
/**
* Use the `@faker-js/faker` package to generate fake data inside examples on your gherkin tests
*
* #### Usage
*
* To start please install `@faker-js/faker` package
*
* ```
* npm install -D @faker-js/faker
* ```
*
* ```
* yarn add -D @faker-js/faker
* ```
*
* Add this plugin to config file:
*
* ```js
* plugins: {
* fakerTransform: {
* enabled: true
* }
* }
* ```
*
* Add the faker API using a mustache string format inside examples tables in your gherkin scenario outline
*
* ```feature
* Scenario Outline: ...
* Given ...
* When ...
* Then ...
* Examples:
* | productName | customer | email | anythingMore |
* | {{commerce.product}} | Dr. {{name.findName}} | {{internet.email}} | staticData |
* ```
*
*/
module.exports = function (config) {
transform.addTransformerBeforeAll('gherkin.examples', value => {
if (typeof value === 'string' && value.length > 0) {
return faker.helpers.fake(value)
}
return value
})
}