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 8de647e commit a7555e4Copy full SHA for a7555e4
static/app/components/actions/resolve.spec.tsx
@@ -213,13 +213,12 @@ describe('ResolveActions', () => {
213
onUpdate={spy}
214
hasRelease
215
projectSlug="proj-1"
216
- latestRelease={{version: 'frontend@1.2.3'}}
217
/>
218
);
219
220
await userEvent.click(screen.getByLabelText('More resolve options'));
221
expect(screen.getByText('The current semver release')).toBeInTheDocument();
222
- expect(screen.getByText('1.2.3')).toBeInTheDocument();
+ expect(screen.getByText('1.2.0')).toBeInTheDocument();
223
});
224
225
it('shows resolve in latest release option when the current release version does not use semver and flag is enabled', async () => {
0 commit comments