mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
bump v0.2.15 (#613)
* bump v0.2.15 --------- Co-authored-by: neil molina <neil@neils-MacBook-Pro.local> Co-authored-by: ABevier <awbevier@gmail.com>
This commit is contained in:
parent
3bd4a67238
commit
87dd224f9a
4 changed files with 10 additions and 14 deletions
4
.github/workflows/build-sign-notarize.yml
vendored
4
.github/workflows/build-sign-notarize.yml
vendored
|
@ -108,10 +108,6 @@ jobs:
|
|||
CSC_NAME: ${{ secrets.APPLE_IDENTITY_NO_PREFIX }}
|
||||
PUBLISH_URL: "https://gui.tea.xyz/dev"
|
||||
|
||||
- name: run e2e test on dev build
|
||||
if: inputs.s3-prefix != 'release'
|
||||
run: tea -SE xc e2e
|
||||
|
||||
# slower build but dmg output is much nicer looking
|
||||
- name: build release
|
||||
if: inputs.s3-prefix == 'release'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tea",
|
||||
"version": "0.2.14",
|
||||
"version": "0.2.15",
|
||||
"private": true,
|
||||
"description": "tea gui app",
|
||||
"author": "tea.xyz",
|
||||
|
|
|
@ -58,15 +58,15 @@ describe("basic smoke test", () => {
|
|||
|
||||
it("should be able to install specific version", async () => {
|
||||
const { screen, searchTerm } = utils!;
|
||||
await searchTerm("pnpm.io");
|
||||
const pnpmCard = await utils.findSearchPackageCardBySlug("pnpm_io");
|
||||
await expect(pnpmCard).toExist();
|
||||
pnpmCard.click();
|
||||
await searchTerm("grep");
|
||||
const grepCard = await utils.findSearchPackageCardBySlug("gnu_org_grep");
|
||||
await expect(grepCard).toExist();
|
||||
grepCard.click();
|
||||
|
||||
await utils.uninstallPackageIfNeeded();
|
||||
await utils.installSpecificVersion("pnpm_io", "8.0.0");
|
||||
await utils.installSpecificVersion("gnu_org_grep", "3.8.0");
|
||||
|
||||
await utils.verifyAndCloseNotification(/^Package pnpm.io .* has been installed./);
|
||||
await utils.verifyAndCloseNotification(/^Package gnu.org\/grep .* has been installed./);
|
||||
|
||||
// Now test the update
|
||||
await utils.goHome();
|
||||
|
@ -77,10 +77,10 @@ describe("basic smoke test", () => {
|
|||
const header = await screen.findByText("available updates");
|
||||
await expect(header).toExist();
|
||||
|
||||
const updateBtn = await utils.findByTestId("install-button-pnpm_io");
|
||||
const updateBtn = await utils.findByTestId("install-button-gnu_org_grep");
|
||||
await expect(updateBtn).toExist();
|
||||
updateBtn.click();
|
||||
|
||||
await utils.verifyAndCloseNotification(/^Package pnpm.io .* has been installed./);
|
||||
await utils.verifyAndCloseNotification(/^Package gnu.org\/grep .* has been installed./);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -27,7 +27,7 @@ export const config: Options.Testrunner = {
|
|||
browserName: "chrome" // or "firefox", "microsoftedge", "safari"
|
||||
}
|
||||
],
|
||||
logLevel: "info",
|
||||
logLevel: "error",
|
||||
bail: 0,
|
||||
baseUrl: "http://localhost",
|
||||
waitforTimeout: 10000,
|
||||
|
|
Loading…
Reference in a new issue