mirror of
https://github.com/penpot/penpot.git
synced 2025-03-12 15:51:37 -05:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import { expect, test } from 'vitest'
|
|
|
|
test('use jsdom in this test file', () => {
|
|
const element = document.createElement('div')
|
|
expect(element).not.toBeNull()
|
|
})
|
|
|
|
test('adds 1 + 2 to equal 3', () => {
|
|
expect(1 +2).toBe(3)
|
|
});
|