We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b750e26 commit 457bcd6Copy full SHA for 457bcd6
__tests__/ctrf/helpers.test.ts
@@ -15,7 +15,7 @@ describe('getEmoji', () => {
15
})
16
17
it('returns the correct emoji for "pending"', () => {
18
- expect(getEmoji('pending')).toBe('🔄')
+ expect(getEmoji('pending')).toBe('⏳')
19
20
21
it('returns the correct emoji for "other"', () => {
@@ -53,7 +53,7 @@ describe('stripAnsi', () => {
53
it('returns the same string if no ANSI codes are present', () => {
54
const normalString = 'Just a normal string'
55
const result = stripAnsi(normalString)
56
- expect(result).toBe(normalString)
+ expect(result).toBe("normalString")
57
58
59
it('handles empty strings correctly', () => {
0 commit comments