Skip to content

Commit

Permalink
test: 🧪 pass test error
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 11, 2024
1 parent 4c2737f commit cbaecea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { TaskStatus } from './task-status.enum';
import { TaskStatusEnum } from './task-status.enum';

describe('TaskStatus', () => {
it('should have TODO status', () => {
expect(TaskStatus.TODO).toBe('TODO');
expect(TaskStatusEnum.TODO).toBe('TODO');
});

it('should have IN_PROGRESS status', () => {
expect(TaskStatus.IN_PROGRESS).toBe('IN_PROGRESS');
expect(TaskStatusEnum.IN_PROGRESS).toBe('IN_PROGRESS');
});

it('should have DONE status', () => {
expect(TaskStatus.DONE).toBe('DONE');
expect(TaskStatusEnum.DONE).toBe('DONE');
});

it('should be immutable', () => {
Expand Down

0 comments on commit cbaecea

Please sign in to comment.