Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* Fixture data for MySQL integration tests.
* Used by testMysqlCrud to seed and verify CRUD operations on the `item` table.
*/
export const items = [
{itemName: 'Widget Alpha', itemDescription: 'First blong integration test widget'},
{itemName: 'Widget Beta', itemDescription: 'Second blong integration test widget'},
{itemName: 'Widget Gamma', itemDescription: 'Third blong integration test widget'},
] as const;
export const updatedItem = {
itemName: 'Widget Alpha Updated',
itemDescription: 'Updated description for integration test',
} as const;
export const mergedItem = {
itemName: 'Widget Merged',
itemDescription: 'Created via upsert in integration test',
} as const;
|