@profoundlogic/coderflow-cli 0.7.6 → 0.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/test.js +2 -1
- package/package.json +1 -1
package/lib/commands/test.js
CHANGED
|
@@ -291,7 +291,8 @@ export async function runTest(args = []) {
|
|
|
291
291
|
// Use fetch to stream logs
|
|
292
292
|
const logsUrl = `${serverUrl}/test/${data.containerId}/logs`;
|
|
293
293
|
const headers = {
|
|
294
|
-
'Authorization': `Bearer ${apiKey}
|
|
294
|
+
'Authorization': `Bearer ${apiKey}`,
|
|
295
|
+
'x-no-compression': '1'
|
|
295
296
|
};
|
|
296
297
|
|
|
297
298
|
try {
|