Skip to content

Commit c179209

Browse files
committed
fix: linux github actions integ tests fails as secrets store not in actions env
1 parent 4af4011 commit c179209

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/spec/promotions-integ-test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ define(function (require, exports, module) {
2626

2727
describe("integration:Promotions", function () {
2828

29+
if (Phoenix.isTestWindowGitHubActions && Phoenix.platform === "linux") {
30+
// Credentials test doesn't work in GitHub actions in linux desktop as the runner cant reach key ring.
31+
it("Should not run in github actions in linux desktop", async function () {
32+
expect(1).toEqual(1);
33+
});
34+
return;
35+
}
36+
2937
let testWindow,
3038
LoginService,
3139
ProDialogs,

0 commit comments

Comments
 (0)