diff options
author | 2023-06-01 17:37:35 -0400 | |
---|---|---|
committer | 2023-06-01 14:37:35 -0700 | |
commit | 4378ef8e97839f950ddfa180e466d0a8db187681 (patch) | |
tree | 2d99f2bbdd7cd38c0194fe4034f02945e37afb65 /test/js/node/process/process.test.js | |
parent | 2c1694f63bc4eb279aa708f216037d2e6204eaf1 (diff) | |
download | bun-4378ef8e97839f950ddfa180e466d0a8db187681.tar.gz bun-4378ef8e97839f950ddfa180e466d0a8db187681.tar.zst bun-4378ef8e97839f950ddfa180e466d0a8db187681.zip |
mark currently known test fails as `.todo` (#3052)
* start this
* commit
* mark all failing tests as todo
* fasdfad
* bundler tests
* tests
* adjust failing tests to todo
* comment out some more tests
* png as test
Diffstat (limited to 'test/js/node/process/process.test.js')
-rw-r--r-- | test/js/node/process/process.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/process/process.test.js b/test/js/node/process/process.test.js index c9f92362c..f701be1b3 100644 --- a/test/js/node/process/process.test.js +++ b/test/js/node/process/process.test.js @@ -124,7 +124,7 @@ it("process.version starts with v", () => { expect(process.version.startsWith("v")).toBeTruthy(); }); -it("process.argv0", () => { +it.todo("process.argv0", () => { expect(basename(process.argv0)).toBe(basename(process.argv[0])); }); |