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:
Neil 2023-05-16 09:10:31 +08:00 committed by GitHub
parent 3bd4a67238
commit 87dd224f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 14 deletions

View file

@ -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'

View file

@ -1,6 +1,6 @@
{
"name": "tea",
"version": "0.2.14",
"version": "0.2.15",
"private": true,
"description": "tea gui app",
"author": "tea.xyz",

View file

@ -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./);
});
});

View file

@ -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,