mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { it, expect } from 'vitest'
|
|
import { createRequestId } from './createRequestId'
|
|
import { REQUEST_ID_REGEXP } from '../test/helpers'
|
|
|
|
it('returns a request ID', () => {
|
|
expect(createRequestId()).toMatch(REQUEST_ID_REGEXP)
|
|
})
|