tests/e2e: pin driver deps (package.json/package-lock.json); ignore node_modules

This commit is contained in:
mongo-light
2026-08-02 10:57:02 +03:00
parent c29c09d6e8
commit 662df9b121
3 changed files with 182 additions and 0 deletions

15
tests/e2e/package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "e2e",
"version": "1.0.0",
"description": "These exercise mongo-light from a real driver over TCP: full CRUD, query operators, aggregation, error codes, concurrent clients, and crash recovery.",
"main": "e2e.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"mongodb": "^7.5.0"
}
}