mirror of
https://github.com/penpot/penpot.git
synced 2026-05-27 02:43:42 +00:00
11 lines
233 B
JavaScript
11 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)
|
|
});
|