File tree Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { AccountsError } from '../src' ;
2
+
3
+ describe ( 'common' , ( ) => {
4
+ it ( 'should have named export AccountsError' , ( ) => {
5
+ expect ( typeof AccountsError ) . toBe ( 'function' ) ;
6
+ } )
7
+ } )
Original file line number Diff line number Diff line change
1
+ import AccountsOauth from '../src' ;
2
+
3
+ describe ( 'AccountsOauth' , ( ) => {
4
+ it ( 'should have default export AccountsOauth' , ( ) => {
5
+ expect ( typeof AccountsOauth ) . toBe ( 'function' ) ;
6
+ } )
7
+ } )
Original file line number Diff line number Diff line change
1
+ import AccountsPassword from '../src' ;
2
+
3
+ describe ( 'AccountsPassword' , ( ) => {
4
+ it ( 'should have default export AccountsPassword' , ( ) => {
5
+ expect ( typeof AccountsPassword ) . toBe ( 'function' ) ;
6
+ } )
7
+ } )
Original file line number Diff line number Diff line change
1
+ import AccountsServer from '../src' ;
2
+
3
+ describe ( 'AccountsServer' , ( ) => {
4
+ it ( 'should have default export AccountsServer' , ( ) => {
5
+ expect ( typeof AccountsServer ) . toBe ( 'function' ) ;
6
+ } )
7
+ } )
You can’t perform that action at this time.
0 commit comments