create an integration handler for syncing with readwise

This commit is contained in:
Hongbo Wu
2023-10-26 18:38:39 +08:00
parent 47f67c237d
commit 5edba30e23
17 changed files with 699 additions and 0 deletions

View File

@ -0,0 +1,3 @@
const register = require('@babel/register').default;
register({ extensions: ['.ts', '.tsx', '.js', '.jsx'] });

View File

@ -0,0 +1,8 @@
import 'mocha'
import { expect } from 'chai'
describe('stub test', () => {
it('should pass', () => {
expect(true).to.be.true
})
})