mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
wip
This commit is contained in:
@@ -2,19 +2,19 @@ import * as request from 'supertest';
|
||||
import { app, AuthorizationHeader, orgainzationId } from './init-app-test';
|
||||
|
||||
describe('Banking Accounts (e2e)', () => {
|
||||
it('/banking/accounts (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/banking/accounts')
|
||||
.set('organization-id', orgainzationId)
|
||||
.set('Authorization', AuthorizationHeader)
|
||||
.expect(200);
|
||||
});
|
||||
// it('/banking/accounts (GET)', () => {
|
||||
// return request(app.getHttpServer())
|
||||
// .get('/banking/accounts')
|
||||
// .set('organization-id', orgainzationId)
|
||||
// .set('Authorization', AuthorizationHeader)
|
||||
// .expect(200);
|
||||
// });
|
||||
|
||||
it('/banking/accounts/:bankAccountId/summary (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/banking/accounts/1/summary')
|
||||
.set('organization-id', orgainzationId)
|
||||
.set('Authorization', AuthorizationHeader)
|
||||
.expect(200);
|
||||
});
|
||||
// it('/banking/accounts/:bankAccountId/summary (GET)', () => {
|
||||
// return request(app.getHttpServer())
|
||||
// .get('/banking/accounts/1/summary')
|
||||
// .set('organization-id', orgainzationId)
|
||||
// .set('Authorization', AuthorizationHeader)
|
||||
// .expect(200);
|
||||
// });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user