Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
fix: backend lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nmashchenko committed Feb 18, 2024
1 parent f69e679 commit d20b3f9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions server/test/friendship/friendship.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
import request from 'supertest';
import {
ADMIN_EMAIL,
ADMIN_PASSWORD,
APP_URL,
TESTER_EMAIL,
TESTER_PASSWORD,
} from '../utils/constants';
import { APP_URL, TESTER_EMAIL, TESTER_PASSWORD } from '../utils/constants';
import { faker } from '@faker-js/faker';

describe('Friendship (e2e)', () => {
Expand All @@ -17,7 +11,7 @@ describe('Friendship (e2e)', () => {
let senderToken;

beforeAll(async () => {
const userApiToken = await request(app)
await request(app)
.post('/api/v1/auth/email/login')
.send({ email: TESTER_EMAIL, password: TESTER_PASSWORD })
.then(({ body }) => {
Expand Down

0 comments on commit d20b3f9

Please sign in to comment.