Remove auto-generated spec files

This commit is contained in:
2023-05-28 14:29:09 +09:00
parent 477bff5bff
commit 1a5ab5d099
14 changed files with 0 additions and 254 deletions

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AlbumController } from './album.controller';
describe('AlbumController', () => {
let controller: AlbumController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [AlbumController],
}).compile();
controller = module.get<AlbumController>(AlbumController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AlbumService } from './album.service';
describe('AlbumService', () => {
let service: AlbumService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [AlbumService],
}).compile();
service = module.get<AlbumService>(AlbumService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ArtistController } from './artist.controller';
describe('ArtistController', () => {
let controller: ArtistController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [ArtistController],
}).compile();
controller = module.get<ArtistController>(ArtistController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ArtistService } from './artist.service';
describe('ArtistService', () => {
let service: ArtistService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [ArtistService],
}).compile();
service = module.get<ArtistService>(ArtistService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AuthController } from './auth.controller';
describe('AuthController', () => {
let controller: AuthController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [AuthController],
}).compile();
controller = module.get<AuthController>(AuthController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AuthService } from './auth.service';
describe('AuthService', () => {
let service: AuthService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [AuthService],
}).compile();
service = module.get<AuthService>(AuthService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { GenreController } from './genre.controller';
describe('GenreController', () => {
let controller: GenreController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [GenreController],
}).compile();
controller = module.get<GenreController>(GenreController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { GenreService } from './genre.service';
describe('GenreService', () => {
let service: GenreService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [GenreService],
}).compile();
service = module.get<GenreService>(GenreService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { HistoryController } from './history.controller';
describe('HistoryController', () => {
let controller: HistoryController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [HistoryController],
}).compile();
controller = module.get<HistoryController>(HistoryController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { LessonController } from './lesson.controller';
describe('LessonController', () => {
let controller: LessonController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [LessonController],
}).compile();
controller = module.get<LessonController>(LessonController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { SettingsController } from './settings.controller';
describe('SettingsController', () => {
let controller: SettingsController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [SettingsController],
}).compile();
controller = module.get<SettingsController>(SettingsController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { SettingsService } from './settings.service';
describe('SettingsService', () => {
let service: SettingsService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SettingsService],
}).compile();
service = module.get<SettingsService>(SettingsService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});

View File

@@ -1,20 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UsersController } from './users.controller';
import { UsersService } from './users.service';
describe('UsersController', () => {
let controller: UsersController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [UsersController],
providers: [UsersService],
}).compile();
controller = module.get<UsersController>(UsersController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});

View File

@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UsersService } from './users.service';
describe('UsersService', () => {
let service: UsersService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [UsersService],
}).compile();
service = module.get<UsersService>(UsersService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});