We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf80f1f commit 51c093dCopy full SHA for 51c093d
test-packages/package-test-core/__tests__/language-server/hover.test.ts
@@ -130,6 +130,25 @@ describe('Language Server: Hover (ts plugin)', () => {
130
`);
131
});
132
133
+ describe('MathML', () => {
134
+ test('empty <math>', async () => {
135
+ const [offset, content] = extractCursor(stripIndent`
136
+ <template>
137
+ <ma%th>
138
+ </math>
139
+ </template>
140
+ `);
141
+
142
+ const doc = await prepareDocument(
143
+ 'ts-template-imports-app/src/ephemeral.gts',
144
+ 'glimmer-ts',
145
+ content,
146
+ );
147
148
+ expect(await performHoverRequest(doc, offset)).toMatchInlineSnapshot();
149
+ });
150
151
152
describe.skip('JS in a TS project', () => {
153
test('with allowJs: true', async () => {
154
const [offset, content] = extractCursor(stripIndent`
0 commit comments