Package: src:node-shallow-equal
Version: 3.1.0-2
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202608/

A wiki page discussing possible solutions is available here:

https://wiki.debian.org/Javascript/KnownPatches?pow_referer=#node-babel7_8

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:node-shallow-equal, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
   dh_auto_test --buildsystem=nodejs
        ln -s ../. node_modules/shallow-equal
        /bin/sh -ex debian/tests/pkg-js/test
+ jest --no-coverage --ci
ts-jest[versions] (WARN) Version 6.0.3 of typescript installed has not been 
tested with ts-jest. If you're experiencing issues, consider using a supported 
version (>=4.3.0 <6.0.0-0). Please do not report issues in ts-jest if you are 
using unsupported versions.
FAIL src/__tests__/index.test.ts
  ● Test suite failed to run

    src/__tests__/index.test.ts:120:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    120 describe("shallowEqual on arrays", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:122:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    122     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:123:7 - 
error TS2304: Cannot find name 'expect'.

    123       expect(shallowEqual(test.arrA, 
test.arrB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:128:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    128 describe("shallowEqual on objects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:130:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    130     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:131:7 - 
error TS2304: Cannot find name 'expect'.

    131       expect(shallowEqual(test.objA, 
test.objB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:136:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    136 describe("shallowEqual on mixed array/objects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:137:3 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    137   it("should act correctly when types are mixed", () => {
          ~~
    src/__tests__/index.test.ts:138:5 - 
error TS2304: Cannot find name 'expect'.

    138     expect(shallowEqual(["boris", "johnson"], { boris: 
"johnson" })).toBe(
            ~~~~~~
    src/__tests__/index.test.ts:141:5 - 
error TS2304: Cannot find name 'expect'.

    141     expect(shallowEqual({ boris: "johnson" }, ["boris", 
"johnson"])).toBe(
            ~~~~~~
    src/__tests__/index.test.ts:144:5 - 
error TS2304: Cannot find name 'expect'.

    144     expect(shallowEqual(["boris", "johnson"], { liz: "truss" 
})).toBe(false);
            ~~~~~~
    src/__tests__/index.test.ts:145:5 - 
error TS2304: Cannot find name 'expect'.

    145     expect(shallowEqual({}, [])).toBe(false);
            ~~~~~~
    src/__tests__/index.test.ts:149:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    149 describe("shallowEqualObjects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:151:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    151     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:152:7 - 
error TS2304: Cannot find name 'expect'.

    152       expect(shallowEqualObjects(test.objA, 
test.objB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:157:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    157 describe("shallowEqualArrays", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:159:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    159     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:160:7 - 
error TS2304: Cannot find name 'expect'.

    160       expect(shallowEqualArrays(test.arrA, 
test.arrB)).toEqual(test.result);
              ~~~~~~

Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        0.993 s
Ran all test suites.
dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1
make: *** [debian/rules:8: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit 
status 2
--------------------------------------------------------------------------------

Reply via email to