Skip to content

Commit

Permalink
Drop babel, not actually used.
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Nov 28, 2024
1 parent e8f142b commit 5351a02
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@
"yaml": "^2.3.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@codemirror/lang-javascript": "^6.0.2",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
Expand Down
4 changes: 0 additions & 4 deletions tests/IntentUtilsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ describe("IntentUtils", () => {
return;
}
expect(roomId).to.equal(ROOM_ID);
<<<<<<< HEAD
throw new MatrixError({ errcode: "M_FORBIDDEN", error: "Test forced error"}, 401, {})
=======
throw new MatrixError({ errcode: "M_FORBIDDEN", error: "Test forced error"}, 401, { })
>>>>>>> origin/main
};

// This should invite the puppet user.
Expand Down
8 changes: 0 additions & 8 deletions tests/connections/GenericHookTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,7 @@ describe("GenericHookConnection", () => {
return roomId;
}
expect(roomId).to.equal(ROOM_ID);
<<<<<<< HEAD
throw new MatrixError({ errcode: "M_FORBIDDEN", error: "Test forced error"}, 401, {})
=======
throw new MatrixError({ errcode: "M_FORBIDDEN", error: "Test forced error"}, 401, { })
>>>>>>> origin/main
};

// This should invite the puppet user.
Expand All @@ -348,11 +344,7 @@ describe("GenericHookConnection", () => {

// This should fail the first time, then pass once we've tried to invite the user
intent.ensureJoined = () => {
<<<<<<< HEAD
throw new MatrixError({ errcode: "FORCED_FAILURE", error: "Test forced error"}, 500, {})
=======
throw new MatrixError({ errcode: "FORCED_FAILURE", error: "Test forced error"}, 500, { })
>>>>>>> origin/main
};
try {
// regression test covering https://github.com/matrix-org/matrix-hookshot/issues/625
Expand Down

0 comments on commit 5351a02

Please sign in to comment.