mirror of
https://github.com/actions/toolkit.git
synced 2026-08-24 00:00:19 +02:00
test: fix deprecated Jest matchers for v30
- Replace toThrowError() with toThrow() - Replace toBeCalledWith() with toHaveBeenCalledWith() - Update snapshots
This commit is contained in:
@@ -8,7 +8,7 @@ describe('attest', () => {
|
||||
predicate: {bar: 'baz'},
|
||||
token: 'token'
|
||||
}
|
||||
expect(attest(options)).rejects.toThrowError(
|
||||
expect(attest(options)).rejects.toThrow(
|
||||
'Must provide either subjectName and subjectDigest or subjects'
|
||||
)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user