Skip to content

Commit

Permalink
fix: undo change
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Nov 1, 2024
1 parent b6f1332 commit ec9a988
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('AssignmentCollection.vue', () => {
await userEvent.click(getByTestId('assignment-collection-drop-area'));
await userEvent.click(getByTestId('assignment-collection-drop-area'));

const assignments = await findAllByTestId('assignment');
let assignments = await findAllByTestId('assignment');

expect(assignments.length).toEqual(2);

Expand Down Expand Up @@ -117,7 +117,7 @@ describe('AssignmentCollection.vue', () => {
await dropAssignment({ key: 'objectKey', value: {}, dropArea });
await dropAssignment({ key: 'arrayKey', value: [], dropArea });

let assignments = await findAllByTestId('assignment');
const assignments = await findAllByTestId('assignment');

expect(assignments.length).toBe(5);
expect(getAssignmentType(assignments[0])).toEqual('Boolean');
Expand Down

0 comments on commit ec9a988

Please sign in to comment.