writeAttestation.spec.ts 299 Bytes
Newer Older
Will Cory's avatar
Will Cory committed
1 2 3 4 5 6 7 8 9 10
import { writeContract } from '@wagmi/core'
import { describe, expect, it } from 'vitest'

import { writeAttestation } from './writeAttestation'

describe(writeAttestation.name, () => {
  it('rexports writeContract from @wagmi/core', () => {
    expect(writeAttestation).toBe(writeContract)
  })
})