Skip to content

Commit 05af694

Browse files
committed
Remove test
1 parent d2ed538 commit 05af694

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

packages/read/src/index.test.ts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -192,28 +192,4 @@ Awesome feature, hidden behind a feature flag
192192
},
193193
]);
194194
});
195-
196-
it("should read an old changeset", async () => {
197-
const cwd = await testdir({
198-
".changeset/basic-changeset/changes.json": JSON.stringify({
199-
releases: [
200-
{
201-
name: "cool-package",
202-
type: "minor",
203-
},
204-
],
205-
dependents: [],
206-
}),
207-
".changeset/basic-changeset/changes.md": `Nice simple summary`,
208-
});
209-
210-
const changesets = await read(cwd);
211-
expect(changesets).toEqual([
212-
{
213-
releases: [{ name: "cool-package", type: "minor" }],
214-
summary: "Nice simple summary",
215-
id: "basic-changeset",
216-
},
217-
]);
218-
});
219195
});

0 commit comments

Comments
 (0)