Skip to content

Commit

Permalink
test(appx): add default applicationId for test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ifurther committed May 7, 2024
1 parent 34cb97d commit a998812
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/src/windows/appxTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ it.ifDevOrWinCi(
app(
{
targets: Platform.WINDOWS.createTarget(["appx"], Arch.x64),
config: {
appx: {
applicationId: "01234Test.ApplicationDataSample",
},
},
},
{
projectDirCreated: async projectDir => {
Expand All @@ -34,6 +39,7 @@ it.ifDevOrWinCi(
targets: Platform.WINDOWS.createTarget(["appx"], Arch.x64),
config: {
appx: {
applicationId: "01234Test.ApplicationDataSample",
addAutoLaunchExtension: true,
},
},
Expand All @@ -49,6 +55,7 @@ it2.ifNotCi(
targets: Platform.WINDOWS.createTarget(["appx"], Arch.x64),
config: {
win: {
applicationId: "01234Test.ApplicationDataSample",
certificateSubjectName: "Foo",
},
},
Expand All @@ -64,6 +71,7 @@ it(
cscLink: protectedCscLink,
cscKeyPassword: "test",
appx: {
applicationId: "01234Test.ApplicationDataSample",
languages: ["de-DE", "ru-RU"],
minVersion: "10.0.16299.0",
maxVersionTested: "10.0.16299.0",
Expand Down

0 comments on commit a998812

Please sign in to comment.