Skip to content

Commit

Permalink
#585: no tests for the HttpServer for now
Browse files Browse the repository at this point in the history
  • Loading branch information
basmasking committed Dec 31, 2024
1 parent 18e2abe commit 4ffb3f1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/http/test/HttpServer.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { describe, expect, it } from 'vitest';

describe('HttpServer', () =>
{
describe('start', () =>
{
it('should start the server', () =>
{
// The implementation is not tested as it requires a running server.
// We might test this in the future with a mock server.

expect(true).toBe(true);
});
});

describe('stop', () =>
{
it('should stop the server', () =>
{
// The implementation is not tested as it requires a running server.
// We might test this in the future with a mock server.

expect(true).toBe(true);
});
});
});

0 comments on commit 4ffb3f1

Please sign in to comment.