Skip to content

Commit 4ee6a4b

Browse files
terapyonterapyon
authored andcommitted
test fixed version number
1 parent cca7816 commit 4ee6a4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/mimePlugin.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ describe('validateVersion', () => {
112112
});
113113

114114
it('should log success for matching versions', () => {
115-
validateVersion('0.4.0');
115+
validateVersion('0.5.0');
116116

117117
expect(consoleLogSpy).toHaveBeenCalledWith(
118-
expect.stringContaining('Version check passed: v0.4.0'),
118+
expect.stringContaining('Version check passed: v0.5.0'),
119119
);
120120
expect(consoleWarnSpy).not.toHaveBeenCalled();
121121
});
@@ -127,7 +127,7 @@ describe('validateVersion', () => {
127127
expect.stringContaining('Version mismatch'),
128128
);
129129
expect(consoleWarnSpy).toHaveBeenCalledWith(
130-
expect.stringContaining('Frontend v0.4.0'),
130+
expect.stringContaining('Frontend v0.5.0'),
131131
);
132132
expect(consoleWarnSpy).toHaveBeenCalledWith(
133133
expect.stringContaining('Backend v0.3.0'),

0 commit comments

Comments
 (0)