anatid-blog/backend/src/comment/comment.entity.spec.ts
Phill Pover 6509965ddb
Some checks failed
Anatid Blog CI Workflow / test (./backend) (push) Failing after 27s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 30s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Has been skipped
Anatid Blog CI Workflow / deploy (push) Has been skipped
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Has been skipped
Fixing comment import
2025-03-29 09:02:30 +00:00

8 lines
158 B
TypeScript

import { Comment } from './comment.entity';
describe('Comment', () => {
it('should be defined', () => {
expect(new Comment()).toBeDefined();
});
});