Added vitest and broke up components
This commit is contained in:
9
src/tokenList.test.ts
Normal file
9
src/tokenList.test.ts
Normal file
@ -0,0 +1,9 @@
|
||||
// @vitest-environment jsdom
|
||||
|
||||
import { expect, test } from 'vitest'
|
||||
import { tokenList } from './tokenList'
|
||||
const tokenListElement = tokenList();
|
||||
|
||||
test('displays an empty list', () => {
|
||||
expect(tokenListElement).toBeDefined()
|
||||
})
|
Reference in New Issue
Block a user