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

Filter by extension

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 app/api/__generated__/util.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion mock-api/disk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ export const disks: Json<Disk>[] = [
name: 'disk-3',
description: "it's a third disk",
project_id: project.id,
time_created: new Date().toISOString(),
// random hard-coded date with many digits to exercise date parsing
time_created: '2025-02-13T01:02:03.134789034233Z',
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

confirmed this causes all disk tests to fail on main

time_modified: new Date().toISOString(),
state: { state: 'detached' },
device_path: '/ghi',
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@mswjs/http-middleware": "^0.10.3",
"@oxide/openapi-gen-ts": "~0.6.0",
"@oxide/openapi-gen-ts": "~0.6.1",
"@playwright/test": "^1.50.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
Expand Down
Loading