File: test

package info (click to toggle)
node-proxy-agents 0~2024040606-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,900 kB
  • sloc: javascript: 5,805; makefile: 36
file content (11 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
ARCH=`dpkg-architecture -qDEB_BUILD_GNU_TYPE`
if test "$ARCH" = "${ARCH#s390*}"; then
	jest --testTimeout 50000 --env node \
		--moduleDirectories node_modules \
		--testRegex 'test/*.test.ts' \
		--testPathIgnorePatterns test/dnsResolve.test.ts \
			test/isResolvable.test.ts \
			test/myIpAddress.test.ts
else
        echo "This test is skipped on s390x"
fi