0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 15:51:37 -05:00
penpot/frontend/src/app/main/ui/ds/buttons/simple_button.test.mjs

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)
});