Skip to content

Commit

Permalink
chore: remove absolute path artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
naugtur committed Jun 24, 2024
1 parent ccb193d commit 2b9550d
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion matrix/results/bun.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bun",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/bun.mjs"
"cases/import-cjs/dist/bun.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/endo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "endo",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/endo.mjs"
"cases/import-cjs/endo.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/esbuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "esbuild",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/esbuild.js"
"cases/import-cjs/dist/esbuild.js"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/node-v12.17.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "node-v12",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/index.mjs"
"cases/import-cjs/index.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/node-v12.22.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "node-v12",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/index.mjs"
"cases/import-cjs/index.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/node-v16.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "node-v16",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/index.mjs"
"cases/import-cjs/index.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/node-v20.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "node-v20",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/index.mjs"
"cases/import-cjs/index.mjs"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/parcel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "parcel",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/parcel.js"
"cases/import-cjs/dist/parcel.js"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/rollup.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rollup",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/rollup.js"
"cases/import-cjs/dist/rollup.js"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/tsc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tsc",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/tsc/index.js"
"cases/import-cjs/dist/tsc/index.js"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/tscInterop.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tscInterop",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/tscinterop/index.js"
"cases/import-cjs/dist/tscinterop/index.js"
],
"data": [
{
Expand Down
2 changes: 1 addition & 1 deletion matrix/results/webpack.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "webpack",
"bin": "node",
"args": [
"/home/naugtur/repo/endo-e2e-tests/matrix/cases/import-cjs/dist/webpack.js"
"cases/import-cjs/dist/webpack.js"
],
"data": [
{
Expand Down
4 changes: 2 additions & 2 deletions matrix/tools/runTests.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const { execFile } = require('child_process');
const { writeFileSync } = require('fs');
const path = require('path');

const CASE_PATH = path.resolve(__dirname, '../cases/import-cjs');
const RESULT_PATH = path.resolve(__dirname, '../results');
const CASE_PATH = path.relative(process.cwd(), path.resolve(__dirname, '../cases/import-cjs'));
const RESULT_PATH = path.relative(process.cwd(), path.resolve(__dirname, '../results'));

const engines = {
node: { name: 'node', bin: 'node', args: [`${CASE_PATH}/index.mjs`] },
Expand Down

0 comments on commit 2b9550d

Please sign in to comment.