You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it("defaults to undefined when .github/DEVELOPMENT.md cannot be found",async()=>{
16
-
mockReadFileSafe.mockResolvedValue("");
13
+
describe(readGuide,()=>{
14
+
it("defaults to undefined when .github/DEVELOPMENT.md cannot be found",async()=>{
15
+
mockReadFileSafe.mockResolvedValue("");
17
16
18
-
constguide=awaitreadGuide();
17
+
constguide=awaitreadGuide();
19
18
20
-
expect(guide).toBeUndefined();
21
-
});
19
+
expect(guide).toBeUndefined();
20
+
});
22
21
23
-
it("reads the href and title when the tag exists",async()=>{
24
-
mockReadFileSafe.mockResolvedValue(`# Development
22
+
it("reads the href and title when the tag exists",async()=>{
23
+
mockReadFileSafe.mockResolvedValue(`# Development
25
24
26
25
> If you'd like a more guided walkthrough, see [Contributing to a create-typescript-app Repository](https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository).
27
26
> It'll walk you through the common activities you'll need to contribute.
0 commit comments