Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-05-12 | Node.js: a shim for overriding "http" and "websocket" modules. | Oisin Canty | 1 | -2/+11 | |
Also added stubs for Server.address() This was done to prevent crashes in some popular frameworks like express Supports both CommonJS and the new ES Modules system syntax e.g: app.js: const http = require('http') app.mjs: import http from "http" Usage on Node 14.16.x and higher: { "type": "external", "processes": {"spare": 0}, "working_directory": '/project', "executable": "/usr/bin/env", "arguments": [ "node", "--loader", "unit-http/require_shim.mjs" "--require", "unit-http/require_shim", "app.js" ] } Usage on Node 14.15.x and lower: { "type": "external", "processes": {"spare": 0}, "working_directory": '/project', "executable": "/usr/bin/env", "arguments": [ "node", "--require", "unit-http/require_shim", "app.js" ] } | |||||
2021-05-05 | Tests: added tests for openat2() features. | Andrei Zeliankou | 1 | -0/+32 | |
2021-04-05 | Tests: style. | Andrei Zeliankou | 1 | -2/+2 | |
2021-02-18 | Tests: added regex check. | Andrei Zeliankou | 1 | -0/+13 | |
2020-12-15 | Tests: fixed bug that disabled isolation tests. | Tiago Natel de Moura | 1 | -1/+1 | |
2020-12-09 | Tests: isolation check moved to the pytest_sessionstart(). | Andrei Zeliankou | 1 | -0/+158 | |
This change eliminates the need for some classes to run Unit one more time before running tests. | |||||
2020-11-16 | Tests: fixing tests interrupt in terminal. | Max Romanov | 1 | -0/+3 | |
KeyboardInterrupt re-raised. | |||||
2020-10-01 | Tests: minor fixes. | Andrei Zeliankou | 3 | -0/+48 | |
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file. |