File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ describe.only('HTTP API', () => {
31
31
before ( ( ) => clearHttp ( ) ) ;
32
32
before ( done => clearDatabase ( done ) ) ;
33
33
34
+ it . skip ( 'should handle HTTP POST on /files/:bucket' , done => done ( ) ) ;
35
+ it . skip ( 'should handle HTTP GET on /files/:bucket' , done => done ( ) ) ;
36
+
34
37
it ( 'should handle HTTP GET on /files/:bucket/schema' , done => {
35
38
const { testGetSchema } = testRouter ( options , fileRouter ) ;
36
39
testGetSchema ( { bucket : 'files' } ) . expect ( 200 , ( error , { body } ) => {
@@ -42,6 +45,11 @@ describe.only('HTTP API', () => {
42
45
} ) ;
43
46
} ) ;
44
47
48
+ it . skip ( 'should handle HTTP GET on /files/:bucket/:id' , done => done ( ) ) ;
49
+ it . skip ( 'should handle HTTP PATCH on /files/:bucket/:id' , done => done ( ) ) ;
50
+ it . skip ( 'should handle HTTP PUT on /files/:bucket/:id' , done => done ( ) ) ;
51
+ it . skip ( 'should handle HTTP DELETE on /files/:bucket/:id' , done => done ( ) ) ;
52
+
45
53
after ( ( ) => clearHttp ( ) ) ;
46
54
after ( done => clearDatabase ( done ) ) ;
47
55
} ) ;
You can’t perform that action at this time.
0 commit comments