Skip to content

Commit f513c38

Browse files
committed
type fix
1 parent 7ebe499 commit f513c38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/codemod/test/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe('integration', () => {
264264
expect(warnings).toHaveLength(0);
265265
const errors = result.diagnostics.filter(d => d.level === DiagnosticLevel.Error);
266266
expect(errors).toHaveLength(1);
267-
expect(errors[0].message).toContain('boom');
267+
expect(errors[0]!.message).toContain('boom');
268268

269269
// Phantom package from the reverted transform should not leak into package.json
270270
expect(result.packageJsonChanges).toBeDefined();

0 commit comments

Comments
 (0)