mirror of https://github.com/actions/toolkit
7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
|
import {attest, attestProvenance} from '../src'
|
||
|
|
||
|
it('exports functions', () => {
|
||
|
expect(attestProvenance).toBeInstanceOf(Function)
|
||
|
expect(attest).toBeInstanceOf(Function)
|
||
|
})
|