Fix size-limit config
#8368
tests.yml
on: pull_request
Check for changes
6s
Matrix: build
Matrix: Check package config with are-the-types-wrong
Matrix: test-dist
Matrix: test-published-artifact
Matrix: test-type-portability
Matrix: test-types
Annotations
20 errors and 2 warnings
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an object provided to body will not be serialized when content-type is not json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L397
AssertionError: expected '[object ReadableStream]' to deeply equal '[object Object]'
- Expected
+ Received
- [object Object]
+ [object ReadableStream]
❯ src/query/tests/fetchBaseQuery.test.tsx:397:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an array provided to body will be serialized when content-type is json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L376
AssertionError: expected { _events: {}, …(2) } to deeply equal [ 'test', 'value' ]
- Expected:
Array [
"test",
"value",
]
+ Received:
Object {
"_events": Object {},
"_eventsCount": 5,
"_readableState": Object {
"awaitDrainWriters": null,
"buffer": Array [],
"bufferIndex": 0,
"highWaterMark": 16,
"length": 0,
"pipes": Array [],
},
}
❯ src/query/tests/fetchBaseQuery.test.tsx:376:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an object provided to body will be serialized when content-type is json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L362
AssertionError: expected { _events: {}, …(2) } to deeply equal { test: 'value' }
- Expected
+ Received
Object {
- "test": "value",
+ "_events": Object {},
+ "_eventsCount": 5,
+ "_readableState": Object {
+ "awaitDrainWriters": null,
+ "buffer": Array [],
+ "bufferIndex": 0,
+ "highWaterMark": 16,
+ "length": 0,
+ "pipes": Array [],
+ },
}
❯ src/query/tests/fetchBaseQuery.test.tsx:362:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > server error: should fail normally with a 500 status as json ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L317
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'application/json'
- Expected
+ Received
- application/json
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:317:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > server error: should fail normally with a 500 status as text ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L288
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'text/plain'
- Expected
+ Received
- text/plain
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:288:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > success: parse json without error ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L239
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'application/json'
- Expected
+ Received
- application/json
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:239:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > success: parse text without error ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L211
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'text/plain'
- Expected
+ Received
- text/plain
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:211:63
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse can inject baseQuery meta into the end result from a query:
packages/toolkit/src/query/tests/createApi.test.ts#L733
AssertionError: expected { value: 'success', meta: { …(2) } } to deeply equal { value: 'success', meta: { …(2) } }
- Expected
+ Received
Object {
"meta": Object {
"request": Object {
"headers": Object {
"accept": "application/json",
},
},
"response": Object {
"headers": Object {
- "content-type": "application/json",
+ "content-type": "text/plain;charset=UTF-8",
},
},
},
"value": "success",
}
❯ src/query/tests/createApi.test.ts:733:25
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse can inject baseQuery meta into the end result from a mutation:
packages/toolkit/src/query/tests/createApi.test.ts#L710
AssertionError: expected { banana: 'bread', meta: { …(2) } } to deeply equal { banana: 'bread', meta: { …(2) } }
- Expected
+ Received
Object {
"banana": "bread",
"meta": Object {
"request": Object {
"headers": Object {
"accept": "application/json",
"content-type": "application/json",
},
},
"response": Object {
"headers": Object {
- "content-type": "application/json",
+ "content-type": "text/plain;charset=UTF-8",
},
},
},
}
❯ src/query/tests/createApi.test.ts:710:45
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse handles an async transformation and returns the merged data (query):
packages/toolkit/src/query/tests/createApi.test.ts#L686
AssertionError: expected { value: 'success', _events: {}, …(2) } to deeply equal { value: 'success', banana: 'bread' }
- Expected
+ Received
Object {
- "banana": "bread",
+ "_events": Object {},
+ "_eventsCount": 5,
+ "_readableState": Object {
+ "awaitDrainWriters": null,
+ "buffer": Array [],
+ "bufferIndex": 0,
+ "highWaterMark": 16,
+ "length": 0,
+ "pipes": Array [],
+ },
"value": "success",
}
❯ src/query/tests/createApi.test.ts:686:25
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an object provided to body will not be serialized when content-type is not json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L397
AssertionError: expected '[object ReadableStream]' to deeply equal '[object Object]'
- Expected
+ Received
- [object Object]
+ [object ReadableStream]
❯ src/query/tests/fetchBaseQuery.test.tsx:397:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an array provided to body will be serialized when content-type is json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L376
AssertionError: expected { _events: {}, …(2) } to deeply equal [ 'test', 'value' ]
- Expected:
Array [
"test",
"value",
]
+ Received:
Object {
"_events": Object {},
"_eventsCount": 5,
"_readableState": Object {
"awaitDrainWriters": null,
"buffer": Array [],
"bufferIndex": 0,
"highWaterMark": 16,
"length": 0,
"pipes": Array [],
},
}
❯ src/query/tests/fetchBaseQuery.test.tsx:376:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > arg.body > an object provided to body will be serialized when content-type is json:
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L362
AssertionError: expected { _events: {}, …(2) } to deeply equal { test: 'value' }
- Expected
+ Received
Object {
- "test": "value",
+ "_events": Object {},
+ "_eventsCount": 5,
+ "_readableState": Object {
+ "awaitDrainWriters": null,
+ "buffer": Array [],
+ "bufferIndex": 0,
+ "highWaterMark": 16,
+ "length": 0,
+ "pipes": Array [],
+ },
}
❯ src/query/tests/fetchBaseQuery.test.tsx:362:28
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > server error: should fail normally with a 500 status as json ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L317
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'application/json'
- Expected
+ Received
- application/json
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:317:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > server error: should fail normally with a 500 status as text ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L288
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'text/plain'
- Expected
+ Received
- text/plain
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:288:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > success: parse json without error ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L239
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'application/json'
- Expected
+ Received
- application/json
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:239:63
|
|
src/query/tests/fetchBaseQuery.test.tsx > fetchBaseQuery > non-JSON-body > success: parse text without error ("content-type" responseHandler):
packages/toolkit/src/query/tests/fetchBaseQuery.test.tsx#L211
AssertionError: expected 'text/plain;charset=UTF-8' to deeply equal 'text/plain'
- Expected
+ Received
- text/plain
+ text/plain;charset=UTF-8
❯ src/query/tests/fetchBaseQuery.test.tsx:211:63
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse can inject baseQuery meta into the end result from a query:
packages/toolkit/src/query/tests/createApi.test.ts#L733
AssertionError: expected { value: 'success', meta: { …(2) } } to deeply equal { value: 'success', meta: { …(2) } }
- Expected
+ Received
Object {
"meta": Object {
"request": Object {
"headers": Object {
"accept": "application/json",
},
},
"response": Object {
"headers": Object {
- "content-type": "application/json",
+ "content-type": "text/plain;charset=UTF-8",
},
},
},
"value": "success",
}
❯ src/query/tests/createApi.test.ts:733:25
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse can inject baseQuery meta into the end result from a mutation:
packages/toolkit/src/query/tests/createApi.test.ts#L710
AssertionError: expected { banana: 'bread', meta: { …(2) } } to deeply equal { banana: 'bread', meta: { …(2) } }
- Expected
+ Received
Object {
"banana": "bread",
"meta": Object {
"request": Object {
"headers": Object {
"accept": "application/json",
"content-type": "application/json",
},
},
"response": Object {
"headers": Object {
- "content-type": "application/json",
+ "content-type": "text/plain;charset=UTF-8",
},
},
},
}
❯ src/query/tests/createApi.test.ts:710:45
|
|
src/query/tests/createApi.test.ts > additional transformResponse behaviors > transformResponse handles an async transformation and returns the merged data (query):
packages/toolkit/src/query/tests/createApi.test.ts#L686
AssertionError: expected { value: 'success', _events: {}, …(2) } to deeply equal { value: 'success', banana: 'bread' }
- Expected
+ Received
Object {
- "banana": "bread",
+ "_events": Object {},
+ "_eventsCount": 5,
+ "_readableState": Object {
+ "awaitDrainWriters": null,
+ "buffer": Array [],
+ "bufferIndex": 0,
+ "highWaterMark": 16,
+ "length": 0,
+ "pipes": Array [],
+ },
"value": "success",
}
❯ src/query/tests/createApi.test.ts:686:25
|
|
Test Published Artifact react-native
Error: Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.
|
|
Test Published Artifact expo
Error: Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
package
|
1.36 MB |
sha256:13201926b2325d59acf8dc178d822fc796f5dace63fac6a4b090b55308ec4f70
|
|