Files
mastodon-app/test/package.json
Girish Ramakrishnan 43b6dbc74a Replace expect.js with node:assert/strict
expect.js is unmaintained and unnecessary — Node's built-in assert
module covers all our assertion patterns. This also removes expect.js
from package.json dependencies.

Made-with: Cursor
2026-04-15 15:37:50 +02:00

19 lines
343 B
JSON

{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"mocha": "^11.7.5",
"selenium-webdriver": "^4.41.0"
},
"dependencies": {
"chromedriver": "^146.0.5"
}
}