Skip to content

Commit ff9c426

Browse files
committed
fixup! docs
1 parent 0cae57e commit ff9c426

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Our unit tests are written in TypeScript and run using
143143

144144
These live under [test/unit](../test/unit).
145145

146-
We use unit tests for functions and things that can be tested in isolation.
146+
We use unit tests for functions and things that can be tested in isolation. The file structure is modeled closely after `/src` so it's easy for people to know where test files should live.
147147

148148
### Integration tests
149149

test/unit/node/util.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as cp from "child_process"
2-
import * as path from "path"
32
import { promises as fs } from "fs"
3+
import * as path from "path"
44
import { generateUuid } from "../../../src/common/util"
5-
import * as util from "../../../src/node/util"
65
import { tmpdir } from "../../../src/node/constants"
6+
import * as util from "../../../src/node/util"
77

88
describe("getEnvPaths", () => {
99
describe("on darwin", () => {

0 commit comments

Comments
 (0)