yarn add eslint -D
yarn eslint --init
| import { Test, TestingModule } from '@nestjs/testing'; | |
| import { INestApplication } from '@nestjs/common'; | |
| import * as request from 'supertest'; | |
| import { AppModule } from './../src/app.module'; | |
| import { UserService } from '@src/modules/registrations/features/users/user.service'; | |
| describe('Users (e2e)', () => { | |
| let app: INestApplication; | |
| let token: string; | |
| const luid = 'ez-volt'; |
| #!/bin/bash | |
| sudo add-apt-repository -y ppa:git-core/ppa | |
| sudo apt-get update | |
| sudo apt-get install git -y |