Skip to content

Commit

Permalink
test(core): adjust expect #WIK-6050
Browse files Browse the repository at this point in the history
  • Loading branch information
huanhuanwa committed Mar 21, 2022
1 parent 03e4354 commit 5d09179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/src/plugins/with-angular.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,6 @@ const getCommonPath = (oldPath, newPath) => {
const validKey = (moveNodeEditor, matches) => {
for (const [path, key] of matches) {
const [node] = Editor.node(moveNodeEditor, path);
expect(NODE_TO_KEY.get(node).id === key.id);
expect(NODE_TO_KEY.get(node)).toEqual(key);
}
};

0 comments on commit 5d09179

Please sign in to comment.