We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59802b commit fafca1fCopy full SHA for fafca1f
src/shared/utility/solid/suspense-for.test.tsx
@@ -119,14 +119,14 @@ describe('SuspenseFor', () => {
119
));
120
121
await vi.waitFor(() => {
122
- expect(container.innerText).toContain('Custom Fallback');
+ expect(container.textContent).toContain('Custom Fallback');
123
});
124
125
deferred.resolve();
126
127
expect(container.textContent).toContain('Item');
128
129
- expect(container.innerText).not.toContain('Custom Fallback');
+ expect(container.textContent).not.toContain('Custom Fallback');
130
131
132
it('should handle fallback correctly', async () => {
0 commit comments