mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
"use strict";
|
|
|
|
const path = require("node:path");
|
|
|
|
const fixturesDir = path.join(__dirname, "..", "fixtures");
|
|
|
|
function fixturesPath(...args) {
|
|
return path.join(fixturesDir, ...args);
|
|
}
|
|
|
|
module.exports = {
|
|
fixturesDir,
|
|
path: fixturesPath,
|
|
};
|