Skip to content

Commit 4e2a10a

Browse files
committed
Revert "Remove express from testing - broken upstream"
This reverts commit 273a997.
1 parent c168bfb commit 4e2a10a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/test_node.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@ def test_node_version(auto_container):
5252
repository_url="https://github.com/tj/commander.js.git",
5353
build_command="npm ci && npm test && npm run check:lint",
5454
),
55+
GitRepositoryBuild(
56+
repository_url="https://github.com/expressjs/express.git",
57+
build_command=dedent(
58+
"""npm rm --silent --save-dev connect-redis &&
59+
npm run test -- --timeout 7500 &&
60+
npm run lint
61+
"""
62+
),
63+
),
5564
GitRepositoryBuild(
5665
build_command=dedent(
5766
"""npm -g install yarn &&
@@ -89,6 +98,8 @@ def test_popular_npm_repos(
8998
- :command:`npm ci && npm test`
9099
* - `Commander.js <https://github.com/tj/commander.js.git>`_
91100
- :command:`npm ci && npm test && npm run check:lint`
101+
* - `Express <https://github.com/expressjs/express.git>`_
102+
- :command:`npm config set shrinkwrap false && npm rm --silent --save-dev connect-redis && npm run test -- --timeout 7500 && npm run lint`
92103
* - `prop-types <https://github.com/facebook/prop-types>`_
93104
- :command:`npm -g install yarn && yarn --frozen-lockfile && yarn run build && yarn run pretest && yarn run tests-only`
94105
* - `node-fs-extra <https://github.com/jprichardson/node-fs-extra>`_

0 commit comments

Comments
 (0)