@tevm/base-bundler
Version:
Internal bundler for Tevm
15 lines (12 loc) • 412 B
text/typescript
import { describe, expect, it } from 'vitest'
import * as index from './index.js'
describe('index.js', () => {
it('should export bundler function', () => {
expect(index.bundler).toBeDefined()
expect(typeof index.bundler).toBe('function')
})
it('should export getContractPath function', () => {
expect(index.getContractPath).toBeDefined()
expect(typeof index.getContractPath).toBe('function')
})
})