mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
feat(server): more e2e test cases
This commit is contained in:
29
packages/server/test/banking-uncategorized.e2e-spec.ts
Normal file
29
packages/server/test/banking-uncategorized.e2e-spec.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import * as request from 'supertest';
|
||||
import { app, AuthorizationHeader, orgainzationId } from './init-app-test';
|
||||
|
||||
describe('Banking Uncategorized Transactions (e2e)', () => {
|
||||
it('/banking/uncategorized/:uncategorizedTransactionId (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/banking/uncategorized/1')
|
||||
.set('organization-id', orgainzationId)
|
||||
.set('Authorization', AuthorizationHeader)
|
||||
.expect(200);
|
||||
});
|
||||
|
||||
it('/banking/uncategorized/accounts/:accountId (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/banking/uncategorized/accounts/1')
|
||||
.set('organization-id', orgainzationId)
|
||||
.set('Authorization', AuthorizationHeader)
|
||||
.expect(200);
|
||||
});
|
||||
|
||||
it('/banking/uncategorized/autofill (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/banking/uncategorized/autofill')
|
||||
.query({ uncategorizedTransactionIds: [1] })
|
||||
.set('organization-id', orgainzationId)
|
||||
.set('Authorization', AuthorizationHeader)
|
||||
.expect(200);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user