Skip to content

Commit

Permalink
Fix organize-imports test because it had invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Nov 30, 2023
1 parent ff6a23d commit fc039f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('Language Server: Organize Imports', () => {
import { ComponentLike, ModifierLike, HelperLike } from '@glint/template';
import { TOC } from '@ember/component/template-only';
const MaybeComponent: undefined as TOC<{ Args: { arg: string } }> | undefined;
const MaybeComponent = undefined as TOC<{ Args: { arg: string } }> | undefined;
declare const CanvasThing: ComponentLike<{ Args: { str: string }; Element: HTMLCanvasElement }>;
`,
});
Expand Down

0 comments on commit fc039f0

Please sign in to comment.