feat: Bulk delete customers and expenses.

This commit is contained in:
Ahmed Bouhuolia
2020-06-21 21:10:30 +02:00
parent aff3de5cc9
commit cd46ecb58d
6 changed files with 182 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ import {
} from '~/dbInit';
describe.only('routes: /accounts/', () => {
describe('routes: /accounts/', () => {
describe('POST `/accounts`', () => {
it('Should `name` be required.', async () => {
const res = await request()
@@ -190,7 +190,7 @@ describe.only('routes: /accounts/', () => {
});
});
it.only('Should response success with correct data form.', async () => {
it('Should response success with correct data form.', async () => {
const account = await tenantFactory.create('account');
const res = await request()
.post('/api/accounts')