docs(parameterize): fix code snippet (#18848)

This commit is contained in:
Eduard Bardají Puig 2022-11-16 21:44:45 +00:00 committed by GitHub
parent a7f205bf4d
commit 10b8a83b45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,7 +159,7 @@ export type TestOptions = {
person: string;
};
export const test = base.test.extend<TestOptions>({
export const test = base.extend<TestOptions>({
// Define an option and provide a default value.
// We can later override it in the config.
person: ['John', { option: true }],