Skip to content

Commit

Permalink
chore(deps-dev): bump @faker-js/faker from 7.6.0 to 9.0.3 (#4512)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 4, 2024
1 parent c436695 commit 0b2eda0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
},
"devDependencies": {
"@codeceptjs/mock-request": "0.3.1",
"@faker-js/faker": "7.6.0",
"@faker-js/faker": "9.0.3",
"@pollyjs/adapter-puppeteer": "6.0.6",
"@pollyjs/core": "5.1.0",
"@types/chai": "4.3.19",
Expand Down
2 changes: 1 addition & 1 deletion test/bdd/features/faker.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ Feature: Faker examples
Then "<cashier>" returned "<change>" in change to "<customer>"
Examples:
| product | customer | price | cashier |
| {{vehicle.vehicle}} | Dr. {{name.findName}} | {{commerce.price}} | cashier 2 |
| {{vehicle.vehicle}} | Dr. {{name.fullName}} | {{commerce.price}} | cashier 2 |
2 changes: 1 addition & 1 deletion test/data/rest/posts_factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ const { Factory } = require('rosie');
const { faker } = require('@faker-js/faker');

module.exports = new Factory()
.attr('author', () => faker.name.findName())
.attr('author', () => faker.name.fullName())
.attr('title', () => faker.lorem.sentence())
.attr('body', () => faker.lorem.paragraph());

0 comments on commit 0b2eda0

Please sign in to comment.