Skip to content

Commit bf63d65

Browse files
committed
test: add empty specs for file http api
1 parent 1377eaa commit bf63d65

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/file.http.spec.js

+8
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ describe.only('HTTP API', () => {
3131
before(() => clearHttp());
3232
before(done => clearDatabase(done));
3333

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+
3437
it('should handle HTTP GET on /files/:bucket/schema', done => {
3538
const { testGetSchema } = testRouter(options, fileRouter);
3639
testGetSchema({ bucket: 'files' }).expect(200, (error, { body }) => {
@@ -42,6 +45,11 @@ describe.only('HTTP API', () => {
4245
});
4346
});
4447

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+
4553
after(() => clearHttp());
4654
after(done => clearDatabase(done));
4755
});

0 commit comments

Comments
 (0)