mirror of
https://github.com/actions/toolkit.git
synced 2025-06-11 18:20:45 +09:00
Add working Jest & TypeScript config
- Jest now uses ts-jest for transforms - TypeScript compilation via `lerna run tsc`
This commit is contained in:
parent
97bc7918f4
commit
f026c43b81
10 changed files with 124 additions and 27 deletions
|
@ -1,9 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
// const github = require('..');
|
||||
|
||||
describe('@actions/github', () => {
|
||||
it('needs tests', () => {
|
||||
|
||||
});
|
||||
});
|
7
packages/github/__tests__/github.test.ts
Normal file
7
packages/github/__tests__/github.test.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { github } from '../src/github';
|
||||
|
||||
describe('@actions/github', () => {
|
||||
it('needs tests', () => {
|
||||
expect(github()).toBe(true)
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue