mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-04-01 01:33:17 +08:00
Add working Jest & TypeScript config
- Jest now uses ts-jest for transforms - TypeScript compilation via `lerna run tsc`
This commit is contained in:
@@ -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)
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user