File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ import { FetchRequest , VectorClipJobsParameter } from '../../../src/classic/namespace' ;
2+
3+ describe ( 'namespace' , ( ) => {
4+ var originaTimeout ;
5+ beforeEach ( ( ) => {
6+ originaTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
7+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 50000 ;
8+ } ) ;
9+ afterEach ( ( ) => {
10+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originaTimeout ;
11+ } ) ;
12+
13+ it ( 'FetchRequest, VectorClipJobsParameter' , ( ) => {
14+ expect ( FetchRequest ) . not . toBeNull ( ) ;
15+ expect ( VectorClipJobsParameter ) . not . toBeNull ( ) ;
16+ expect ( typeof FetchRequest ) . toBe ( 'function' ) ;
17+ expect ( typeof VectorClipJobsParameter ) . toBe ( 'function' ) ;
18+ expect ( typeof SuperMap . FetchRequest ) . toBe ( 'function' ) ;
19+ expect ( typeof SuperMap . VectorClipJobsParameter ) . toBe ( 'function' ) ;
20+ } ) ;
21+ } ) ;
You can’t perform that action at this time.
0 commit comments