Skip to content

Commit 67dc11e

Browse files
committed
test index files
1 parent 22aac84 commit 67dc11e

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

packages/common/__tests__/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { AccountsError } from '../src';
2+
3+
describe('common', () => {
4+
it('should have named export AccountsError', () => {
5+
expect(typeof AccountsError).toBe('function');
6+
})
7+
})

packages/oauth/__tests__/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import AccountsOauth from '../src';
2+
3+
describe('AccountsOauth', () => {
4+
it('should have default export AccountsOauth', () => {
5+
expect(typeof AccountsOauth).toBe('function');
6+
})
7+
})

packages/password/__tests__/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import AccountsPassword from '../src';
2+
3+
describe('AccountsPassword', () => {
4+
it('should have default export AccountsPassword', () => {
5+
expect(typeof AccountsPassword).toBe('function');
6+
})
7+
})

packages/server/__tests__/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import AccountsServer from '../src';
2+
3+
describe('AccountsServer', () => {
4+
it('should have default export AccountsServer', () => {
5+
expect(typeof AccountsServer).toBe('function');
6+
})
7+
})

0 commit comments

Comments
 (0)