refactor: strip Phase/Plan/R-number references from source comments
This commit is contained in:
@@ -76,9 +76,7 @@ export const articlesRepositoryContract =
|
||||
|
||||
it("getArticles filters by status", async () => {
|
||||
await repo.createArticle(articleFactory.build({ status: "draft" }));
|
||||
await repo.createArticle(
|
||||
articleFactory.build({ status: "published" }),
|
||||
);
|
||||
await repo.createArticle(articleFactory.build({ status: "published" }));
|
||||
const drafts = await repo.getArticles({ status: "draft" });
|
||||
expect(drafts).toHaveLength(1);
|
||||
expect(drafts[0]?.status).toBe("draft");
|
||||
@@ -117,7 +115,7 @@ export const articlesRepositoryContract =
|
||||
expect(result).toBeUndefined();
|
||||
});
|
||||
|
||||
describe("span emission (R50)", () => {
|
||||
describe("span emission", () => {
|
||||
it("getArticles emits articles.getArticles span with op=repository", async () => {
|
||||
if (!getTracer) return;
|
||||
const tracer = getTracer();
|
||||
|
||||
Reference in New Issue
Block a user