@mytegroupinc/myte-core 0.0.50 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -728,13 +728,14 @@ async function main() {
|
|
|
728
728
|
}
|
|
729
729
|
|
|
730
730
|
const staleGuardFeedbackId = createdFeedbackIds[4];
|
|
731
|
+
const staleProposalTitle = `${namespace} stale local proposal`;
|
|
731
732
|
const staleDraft = runCli([
|
|
732
733
|
"feedback",
|
|
733
734
|
"edit",
|
|
734
735
|
"--feedback-id",
|
|
735
736
|
staleGuardFeedbackId,
|
|
736
737
|
"--title",
|
|
737
|
-
|
|
738
|
+
staleProposalTitle,
|
|
738
739
|
"--reason",
|
|
739
740
|
"Harness creates this artifact before a remote revision.",
|
|
740
741
|
"--json",
|
|
@@ -803,7 +804,7 @@ async function main() {
|
|
|
803
804
|
...baseArgs,
|
|
804
805
|
], workspace, { apiKey: ownerApiKey }).stdout;
|
|
805
806
|
assert(
|
|
806
|
-
String(forcedStaleApply.feedback?.title || "") ===
|
|
807
|
+
String(forcedStaleApply.feedback?.title || "") === staleProposalTitle,
|
|
807
808
|
`Owner forced stale override did not apply the intended title: ${JSON.stringify(forcedStaleApply, null, 2)}`,
|
|
808
809
|
);
|
|
809
810
|
assert(
|