mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-22 01:44:24 +01:00
Merge pull request 'fix: typo on releases for source code downloads' (#5652) from viceice/fix/typo into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5652 Reviewed-by: Otto <otto@codeberg.org> Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
commit
6f1c1cdb04
|
@ -84,7 +84,7 @@
|
||||||
</li>
|
</li>
|
||||||
<li class="{{if $hasReleaseAttachment}}start-gap{{end}}">
|
<li class="{{if $hasReleaseAttachment}}start-gap{{end}}">
|
||||||
<a class="archive-link tw-flex-1 flex-text-inline tw-font-bold" href="{{$.RepoLink}}/archive/{{$release.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow">
|
<a class="archive-link tw-flex-1 flex-text-inline tw-font-bold" href="{{$.RepoLink}}/archive/{{$release.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow">
|
||||||
{{svg "octicon-file-zip" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.release.source_code"}} (ZIP)
|
{{svg "octicon-file-zip" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.release.source_code"}} (TAR.GZ)
|
||||||
</a>
|
</a>
|
||||||
<div class="tw-mr-1">
|
<div class="tw-mr-1">
|
||||||
<span class="text grey">{{ctx.Locale.TrN .Release.ArchiveDownloadCount.TarGz "repo.release.download_count_one" "repo.release.download_count_few" (ctx.Locale.PrettyNumber .Release.ArchiveDownloadCount.TarGz)}}</span>
|
<span class="text grey">{{ctx.Locale.TrN .Release.ArchiveDownloadCount.TarGz "repo.release.download_count_one" "repo.release.download_count_few" (ctx.Locale.PrettyNumber .Release.ArchiveDownloadCount.TarGz)}}</span>
|
||||||
|
|
|
@ -49,6 +49,10 @@ test('External Release Attachments', async ({browser, isMobile}, workerInfo) =>
|
||||||
// Validate release page and click edit
|
// Validate release page and click edit
|
||||||
await expect(page).toHaveURL('/user2/repo2/releases');
|
await expect(page).toHaveURL('/user2/repo2/releases');
|
||||||
await expect(page.locator('.download[open] li')).toHaveCount(3);
|
await expect(page.locator('.download[open] li')).toHaveCount(3);
|
||||||
|
await expect(page.locator('.download[open] li:nth-of-type(1)')).toContainText('Source code (ZIP)');
|
||||||
|
await expect(page.locator('.download[open] li:nth-of-type(1) a')).toHaveAttribute('href', '/user2/repo2/archive/2.0.zip');
|
||||||
|
await expect(page.locator('.download[open] li:nth-of-type(2)')).toContainText('Source code (TAR.GZ)');
|
||||||
|
await expect(page.locator('.download[open] li:nth-of-type(2) a')).toHaveAttribute('href', '/user2/repo2/archive/2.0.tar.gz');
|
||||||
await expect(page.locator('.download[open] li:nth-of-type(3)')).toContainText('Test');
|
await expect(page.locator('.download[open] li:nth-of-type(3)')).toContainText('Test');
|
||||||
await expect(page.locator('.download[open] li:nth-of-type(3) a')).toHaveAttribute('href', 'https://forgejo.org/');
|
await expect(page.locator('.download[open] li:nth-of-type(3) a')).toHaveAttribute('href', 'https://forgejo.org/');
|
||||||
save_visual(page);
|
save_visual(page);
|
||||||
|
|
Loading…
Reference in a new issue