Skip to content

Commit 6266dcd

Browse files
committed
update tests
1 parent 5b8fb62 commit 6266dcd

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

packages/cli/src/__tests__/CliSetupTest.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ describe("Cli Setup & Execution", () => {
2424
getErrHelpWidth(): number { return 250;},
2525

2626
writeOut(str: string) {
27-
otherOutput = str;
27+
otherOutput += str;
2828
},
2929

3030
writeErr(str: string) {
31-
errorOutput = str;
31+
errorOutput += str;
3232
}
3333
});
3434
});
@@ -136,7 +136,7 @@ Options:
136136

137137
const keyPairArgHelp = "error: required option '-k, --keypair <path-to-keypair-file>' not specified"
138138

139-
const createHelp = `Usage: dapp-store create [options] [command]
139+
const createHelp = `Usage: dapp-store create [options] [command]
140140
141141
Create a \`app\`, or \`release\`
142142
@@ -147,6 +147,9 @@ Commands:
147147
app [options] Create a app
148148
release [options] Create a release
149149
help [command] display help for command
150+
151+
Release metadata requirements:
152+
Ensure publisher.support_email is set in your config. Releases expose this to end users, while publisher.email remains for Solana Mobile outreach.
150153
`;
151154

152155
const createAppHelp = `Usage: dapp-store create app [options]

packages/cli/src/commands/create/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export * from "./CreateCliRelease.js";
1515
// Publisher
1616
// Public key attached to a publisher must also verify applications and releases
1717
// Most information here can be be edited after the fact
18-
// Only required fields are name, address, publisher website, contact email, and support_email
18+
// Only required fields are name, address, publisher website, and contact email
1919
// Optional fields are: description, image_url (need dimensions!)
2020

2121
// App

0 commit comments

Comments
 (0)