bun-types 1.1.35-canary.20241117T140556 → 1.1.35-canary.20241119T140647

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/test.d.ts +3 -3
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.35-canary.20241117T140556",
2
+ "version": "1.1.35-canary.20241119T140647",
3
3
  "name": "bun-types",
4
4
  "license": "MIT",
5
5
  "main": "",
package/test.d.ts CHANGED
@@ -424,9 +424,9 @@ declare module "bun:test" {
424
424
  /**
425
425
  * Marks this test as to be written or to be fixed.
426
426
  *
427
- * When a test function is passed, it will be marked as `todo` in the test results
428
- * as long the test does not pass. When the test passes, the test will be marked as
429
- * `fail` in the results; you will have to remove the `.todo` or check that your test
427
+ * These tests will not be executed unless the `--todo` flag is passed. With the flag,
428
+ * if the test passes, the test will be marked as `fail` in the results; you will have to
429
+ * remove the `.todo` or check that your test
430
430
  * is implemented correctly.
431
431
  *
432
432
  * @param label the label for the test