We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cafc0f commit 56df09eCopy full SHA for 56df09e
1 file changed
tests/commands/configuration-management/config-export.spec.ts
@@ -132,6 +132,9 @@ describe("Config export", () => {
132
const loggedResponse = loggingTestTransport.logMessages[0].message.trim();
133
134
expect(loggedResponse).toEqual("Successfully exported packages to branch: my-branch");
135
+ expect(fs.chmodSync).toHaveBeenCalledWith(expect.stringMatching(/manifest\.json/), 0o600);
136
+ expect(fs.chmodSync).toHaveBeenCalledWith(expect.stringMatching(/studio\.json/), 0o600);
137
+ expect(fs.chmodSync).toHaveBeenCalledWith(expect.stringMatching(/variables\.json/), 0o600);
138
})
139
140
it("Should export studio file for studio packageKeys and versions", async () => {
0 commit comments