mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Fixes ENG-21481 Updates ci_info to include more CIs. It makes it codegen the ci detection based on the json from the ci-info package. Also it supports setting CI=true to force ci detected. --------- Co-authored-by: pfg <pfg@pfg.pw> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
6 lines
97 B
TypeScript
6 lines
97 B
TypeScript
import { test, expect } from "bun:test";
|
|
|
|
test.only("only", () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|