File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff 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>`_
You can’t perform that action at this time.
0 commit comments