summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-05-12Node.js: a shim for overriding "http" and "websocket" modules.Oisin Canty1-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-05Tests: added tests for openat2() features.Andrei Zeliankou1-0/+32
2021-04-05Tests: style.Andrei Zeliankou1-2/+2
2021-02-18Tests: added regex check.Andrei Zeliankou1-0/+13
2020-12-15Tests: fixed bug that disabled isolation tests.Tiago Natel de Moura1-1/+1
2020-12-09Tests: isolation check moved to the pytest_sessionstart().Andrei Zeliankou1-0/+158
This change eliminates the need for some classes to run Unit one more time before running tests.
2020-11-16Tests: fixing tests interrupt in terminal.Max Romanov1-0/+3
KeyboardInterrupt re-raised.
2020-10-01Tests: minor fixes.Andrei Zeliankou3-0/+48
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file.