Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 87dd224

Browse files
getneilneil molinaABevier
authored
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>
1 parent 3bd4a67 commit 87dd224

4 files changed

Lines changed: 10 additions & 14 deletions

File tree

.github/workflows/build-sign-notarize.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,6 @@ jobs:
108108
CSC_NAME: ${{ secrets.APPLE_IDENTITY_NO_PREFIX }}
109109
PUBLISH_URL: "https://gui.tea.xyz/dev"
110110

111-
- name: run e2e test on dev build
112-
if: inputs.s3-prefix != 'release'
113-
run: tea -SE xc e2e
114-
115111
# slower build but dmg output is much nicer looking
116112
- name: build release
117113
if: inputs.s3-prefix == 'release'

modules/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tea",
3-
"version": "0.2.14",
3+
"version": "0.2.15",
44
"private": true,
55
"description": "tea gui app",
66
"author": "tea.xyz",

modules/desktop/test/specs/app.e2e.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ describe("basic smoke test", () => {
5858

5959
it("should be able to install specific version", async () => {
6060
const { screen, searchTerm } = utils!;
61-
await searchTerm("pnpm.io");
62-
const pnpmCard = await utils.findSearchPackageCardBySlug("pnpm_io");
63-
await expect(pnpmCard).toExist();
64-
pnpmCard.click();
61+
await searchTerm("grep");
62+
const grepCard = await utils.findSearchPackageCardBySlug("gnu_org_grep");
63+
await expect(grepCard).toExist();
64+
grepCard.click();
6565

6666
await utils.uninstallPackageIfNeeded();
67-
await utils.installSpecificVersion("pnpm_io", "8.0.0");
67+
await utils.installSpecificVersion("gnu_org_grep", "3.8.0");
6868

69-
await utils.verifyAndCloseNotification(/^Package pnpm.io .* has been installed./);
69+
await utils.verifyAndCloseNotification(/^Package gnu.org\/grep .* has been installed./);
7070

7171
// Now test the update
7272
await utils.goHome();
@@ -77,10 +77,10 @@ describe("basic smoke test", () => {
7777
const header = await screen.findByText("available updates");
7878
await expect(header).toExist();
7979

80-
const updateBtn = await utils.findByTestId("install-button-pnpm_io");
80+
const updateBtn = await utils.findByTestId("install-button-gnu_org_grep");
8181
await expect(updateBtn).toExist();
8282
updateBtn.click();
8383

84-
await utils.verifyAndCloseNotification(/^Package pnpm.io .* has been installed./);
84+
await utils.verifyAndCloseNotification(/^Package gnu.org\/grep .* has been installed./);
8585
});
8686
});

modules/desktop/wdio.conf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const config: Options.Testrunner = {
2727
browserName: "chrome" // or "firefox", "microsoftedge", "safari"
2828
}
2929
],
30-
logLevel: "info",
30+
logLevel: "error",
3131
bail: 0,
3232
baseUrl: "http://localhost",
3333
waitforTimeout: 10000,

0 commit comments

Comments
 (0)