Skip to content

Commit 15e7e86

Browse files
committed
Update contributing.md
1 parent c40bda8 commit 15e7e86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Create a `config.json` file in the project root directory following the example
2424
"port": 8080,
2525
"workDir": ".esmd",
2626
"npmRegistry": "https://registry.npmjs.org/", // change to your own registry if needed
27-
"npmToken": "xxxxxx" // remove this line if you don't need a token
27+
"npmToken": "xxxxxx" ,// remove this line if you don't have one
2828
}
2929
```
3030

test/_template/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { assert, assertEquals, assertStringIncludes } from "jsr:@std/assert";
44
import * as mod from "esm.sh/PKG[@SEMVER][/PATH]";
55

66
// related issue: https://github.com/esm-dev/esm.sh/issues/ISSUE_NUMBER
7-
Deno.test("issue #ISSUE_NUMBER", async () => {
7+
Deno.test("this a testing name", async () => {
88
assert("foo" in mod);
99
assertEquals(typeof mod.foo, "function");
1010
assertStringIncludes(mod.foo(), "bar");

0 commit comments

Comments
 (0)