11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
describe('Testing Setup', () => {
|
|
it('should work correctly', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
it('should have testing library matchers', () => {
|
|
const element = document.createElement('div');
|
|
element.textContent = 'Hello World';
|
|
expect(element).toBeInTheDocument();
|
|
});
|
|
});
|