13
0
Fork 0
mirror of https://github.com/PaulHatch/semantic-version.git synced 2026-07-01 02:30:45 +00:00

Fix incorrect expected result

This commit is contained in:
Paul Hatcherian 2023-08-09 09:02:09 -04:00
parent ce15f9a933
commit 976ff820fc

View file

@ -884,7 +884,7 @@ test('Patch pattern applied when present', async () => {
expect(firstResult.formattedVersion).toBe('0.0.1+0');
expect(secondResult.formattedVersion).toBe('0.0.1+1');
expect(thirdResult.formattedVersion).toBe('0.0.2+0');
expect(fourthResult.formattedVersion).toBe('0.0.2+3');
expect(fourthResult.formattedVersion).toBe('0.0.2+1');
}, timeout);