Fixed delete workflow and added additional profile info
This commit is contained in:
@@ -31,6 +31,9 @@ test('createBird returns the inserted bird row', async () => {
|
||||
name: 'Kiwi',
|
||||
tag_id: 'A-1',
|
||||
species: 'Cockatiel',
|
||||
motivators: 'Step-up practice',
|
||||
demotivators: 'Vacuum noise',
|
||||
favorite_snack: 'Millet',
|
||||
gender: 'female',
|
||||
date_of_birth: null,
|
||||
gotcha_day: null,
|
||||
@@ -50,6 +53,9 @@ test('createBird returns the inserted bird row', async () => {
|
||||
name: 'Kiwi',
|
||||
tagId: 'A-1',
|
||||
species: 'Cockatiel',
|
||||
motivators: 'Step-up practice',
|
||||
demotivators: 'Vacuum noise',
|
||||
favoriteSnack: 'Millet',
|
||||
gender: 'female',
|
||||
dateOfBirth: null,
|
||||
gotchaDay: null,
|
||||
@@ -62,6 +68,7 @@ test('createBird returns the inserted bird row', async () => {
|
||||
assert.equal(bird?.name, 'Kiwi');
|
||||
assert.equal(bird?.workspace_id, 10);
|
||||
assert.equal(bird?.gender, 'female');
|
||||
assert.equal(bird?.favorite_snack, 'Millet');
|
||||
});
|
||||
|
||||
test('listWeightsForBird scopes by bird, workspace, and day window', async () => {
|
||||
|
||||
Reference in New Issue
Block a user