Skip to content

Commit

Permalink
fix: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
nmn committed Dec 21, 2024
1 parent a2e1e7c commit 52c331b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ describe('StateManager config parsing', () => {
unstable_moduleResolution: { type: 'commonJS' },
});
expect(stateManager.options.unstable_moduleResolution).not.toBeNull();
expect(stateManager.options.unstable_moduleResolution.type).toBe(
expect(stateManager.options.unstable_moduleResolution?.type).toBe(
'commonJS',
);
});
Expand Down

0 comments on commit 52c331b

Please sign in to comment.