1
0
Fork 0
mirror of https://github.com/actions/toolkit.git synced 2025-06-10 01:50:46 +09:00
toolkit/packages/github/__tests__/github.test.ts
Jonathan Clem f026c43b81
Add working Jest & TypeScript config
- Jest now uses ts-jest for transforms
- TypeScript compilation via `lerna run tsc`
2019-04-19 15:15:34 -04:00

7 lines
No EOL
148 B
TypeScript

import { github } from '../src/github';
describe('@actions/github', () => {
it('needs tests', () => {
expect(github()).toBe(true)
});
});