mirror of
https://github.com/element-hq/element-desktop
synced 2025-04-21 09:03:56 +02:00
Iterate
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
3e2dbdbd08
commit
c2e6f80efb
9
.github/workflows/build_and_test.yaml
vendored
9
.github/workflows/build_and_test.yaml
vendored
@ -62,9 +62,12 @@ jobs:
|
|||||||
hdiutil attach ./dist/*.dmg -mountpoint /Volumes/Element &&
|
hdiutil attach ./dist/*.dmg -mountpoint /Volumes/Element &&
|
||||||
rsync -a /Volumes/Element/Element.app ~/Applications/ &&
|
rsync -a /Volumes/Element/Element.app ~/Applications/ &&
|
||||||
hdiutil detach /Volumes/Element
|
hdiutil detach /Volumes/Element
|
||||||
security list-keychains
|
|
||||||
security default-keychain
|
security create-keychain -p password temp.keychain
|
||||||
security default-keychain -s "/Users/runner/Library/Keychains/login.keychain-db"
|
security unlock-keychain -p password temp.keychain
|
||||||
|
security list-keychains -d user -s temp.keychain
|
||||||
|
security set-keychain-settings temp.keychain
|
||||||
|
security default-keychain -s temp.keychain
|
||||||
- name: "Linux (amd64) (sqlcipher: system)"
|
- name: "Linux (amd64) (sqlcipher: system)"
|
||||||
os: ubuntu-22.04
|
os: ubuntu-22.04
|
||||||
artifact: linux-amd64-sqlcipher-system
|
artifact: linux-amd64-sqlcipher-system
|
||||||
|
@ -47,7 +47,7 @@ test.describe("App launch", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("should launch and render the welcome view successfully and support safeStorage", async ({ page }) => {
|
test("should launch and render the welcome view successfully and support safeStorage", async ({ page }) => {
|
||||||
test.skip(platform() === "linux", "This test does not yet support Linux");
|
// test.skip(platform() === "linux", "This test does not yet support Linux");
|
||||||
|
|
||||||
await expect(
|
await expect(
|
||||||
page.evaluate<string | null>(async () => {
|
page.evaluate<string | null>(async () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user