Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/core/auth-nextjs-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ docker run --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgre
npx prisma migrate dev --schema=./src/prisma/schema.prisma
```

5. You also need to supply the following enviroment variables for the email server to work:
5. You also need to supply the following environment variables for the email server to work:

```bash
EMAIL_SERVER_HOST=
Expand Down
2 changes: 1 addition & 1 deletion test/integration/data-grid/custom.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test('Code component cell', async ({ page }) => {
).toBeVisible();
await expect(editorModel.pageRoot.getByText('field: "customField"')).toBeVisible();

// Can use cusom component for id field
// Can use custom component for id field
await expect(editorModel.pageRoot.getByText('[id:0]')).toBeVisible();
});

Expand Down
2 changes: 1 addition & 1 deletion test/integration/undo-redo/basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ test('test batching text input actions into single undo entry', async ({ page })
// Undo changes
await page.keyboard.press('Control+Z');

// Asssert that batched changes were reverted
// Assert that batched changes were reverted
await expect(input).toHaveValue('some value');
});