aleksandrchusovitin/frontend-project-lvl4

View on GitHub
__tests__/index.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import buildApp from '../server/index.js';

test('get /', async () => {
  const app = buildApp({ port: 5000 });
  const response = await app.inject({
    url: '/',
  });
  expect(response.statusCode).toEqual(200);
});