@replayio/test-utils
Advanced tools
Comparing version 1.1.4 to 1.1.5
{ | ||
"name": "@replayio/test-utils", | ||
"version": "1.1.4", | ||
"version": "1.1.5", | ||
"description": "Utilities for recording tests with replay.io", | ||
@@ -29,3 +29,3 @@ "main": "src/index.js", | ||
"dependencies": { | ||
"@replayio/replay": "^0.15.0", | ||
"@replayio/replay": "^0.16.0", | ||
"@types/node-fetch": "^2.6.2", | ||
@@ -36,3 +36,3 @@ "debug": "^4.3.4", | ||
}, | ||
"gitHead": "c75141581ca2846a669c59dced203c33eedb81fa", | ||
"gitHead": "3baceda4fb484a168990fbed0c3ca78dd6254ef1", | ||
"devDependencies": { | ||
@@ -39,0 +39,0 @@ "@types/debug": "^4.1.7" |
@@ -26,3 +26,3 @@ "use strict"; | ||
"Content-Type": "application/json", | ||
Authorization: `Bearer ${apiKey}`, | ||
Authorization: `Bearer ${apiKey.trim()}`, | ||
}, | ||
@@ -29,0 +29,0 @@ body: JSON.stringify({ |
@@ -7,4 +7,5 @@ import ReplayReporter from "./reporter"; | ||
export { fetchWorkspaceConfig } from "./config"; | ||
export * from "./logging"; | ||
export { ReplayReporter }; | ||
export { getMetadataFilePath, initMetadataFile } from "./metadata"; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
@@ -17,2 +31,3 @@ return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
Object.defineProperty(exports, "fetchWorkspaceConfig", { enumerable: true, get: function () { return config_1.fetchWorkspaceConfig; } }); | ||
__exportStar(require("./logging"), exports); | ||
var metadata_1 = require("./metadata"); | ||
@@ -19,0 +34,0 @@ Object.defineProperty(exports, "getMetadataFilePath", { enumerable: true, get: function () { return metadata_1.getMetadataFilePath; } }); |
@@ -0,2 +1,3 @@ | ||
export declare function log(message: string): void; | ||
export declare function warn(message: string, e: unknown): void; | ||
//# sourceMappingURL=logging.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.warn = void 0; | ||
exports.warn = exports.log = void 0; | ||
function log(message) { | ||
console.log("[replay.io]:", message); | ||
} | ||
exports.log = log; | ||
function warn(message, e) { | ||
@@ -5,0 +9,0 @@ console.warn("[replay.io]:", message); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
42983
605
+ Added@replayio/replay@0.16.1(transitive)
- Removed@replayio/replay@0.15.0(transitive)
Updated@replayio/replay@^0.16.0