You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
483 B
22 lines
483 B
import { Test } from '@nestjs/testing';
|
|
|
|
import { AppService } from './app.service';
|
|
|
|
describe('AppService', () => {
|
|
let service: AppService;
|
|
|
|
beforeAll(async () => {
|
|
const app = await Test.createTestingModule({
|
|
providers: [AppService],
|
|
}).compile();
|
|
|
|
service = app.get<AppService>(AppService);
|
|
});
|
|
|
|
describe('getData', () => {
|
|
it('should return "Hello API"', () => {
|
|
expect(service.getData()).toEqual({ message: 'Hello API' });
|
|
});
|
|
});
|
|
});
|