aboutsummaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorShinigami <[email protected]>2025-07-04 20:23:30 +0200
committerGitHub <[email protected]>2025-07-04 18:23:30 +0000
commit623d2741a4ca165596fad7fede2f850b6c08aa3a (patch)
treec05531e1f25bea9201925c0342d22e9a50f8946f /docs/guide
parent160960b79719e1298668a7ebba390b30b8de1080 (diff)
downloadfaker-623d2741a4ca165596fad7fede2f850b6c08aa3a.tar.xz
faker-623d2741a4ca165596fad7fede2f850b6c08aa3a.zip
refactor!: remove deprecations (#3553)
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/frameworks.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guide/frameworks.md b/docs/guide/frameworks.md
index 1733b4e1..ded22f9c 100644
--- a/docs/guide/frameworks.md
+++ b/docs/guide/frameworks.md
@@ -71,7 +71,7 @@ import { faker } from '@faker-js/faker/locale/en';
describe('Testing the application', () => {
it('should create an account with username and password', () => {
- let username = faker.internet.username(); // before version 9.1.0, use userName()
+ let username = faker.internet.username();
let password = faker.internet.password();
let email = faker.internet.exampleEmail();
@@ -111,7 +111,7 @@ test.describe('Testing the application', () => {
test('should create an account with username and password', async ({
page,
}) => {
- const username = faker.internet.username(); // before version 9.1.0, use userName()
+ const username = faker.internet.username();
const password = faker.internet.password();
const email = faker.internet.exampleEmail();