frida-test 0.1.4 → 0.1.5

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.
@@ -1,5 +1,5 @@
1
1
  import { logger } from "../logger.js";
2
- import {} from "../protocol.js";
2
+ import {} from "../protocol/protocol.js";
3
3
  const STATUS_SYMBOLS = {
4
4
  passed: "✅",
5
5
  failed: "❌",
package/dist/runner.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { logger } from "./logger.js";
2
- import { isAgentMessage } from "./protocol.js";
2
+ import { isAgentMessage } from "./protocol/protocol.js";
3
3
  import { printTestSuiteResult } from "./reporter/console.js";
4
4
  export class TestRunner {
5
5
  device;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida-test",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "license": "GPL-3.0-only",
6
6
  "homepage": "https://github.com/bernhste/frida-test/blob/main/README.md",
@@ -29,8 +29,8 @@
29
29
  "default": "./src/agent-runtime/globals.ts"
30
30
  },
31
31
  "./protocol.js": {
32
- "types": "./src/protocol.ts",
33
- "default": "./src/protocol.ts"
32
+ "types": "./src/protocol/protocol.ts",
33
+ "default": "./src/protocol/protocol.ts"
34
34
  }
35
35
  },
36
36
  "files": [
@@ -1,4 +1,4 @@
1
- import { type AgentMessage, type RunSummary, type TestError, type TestResult, type TestStatus, type TestSuiteResult } from "../../src/protocol.js";
1
+ import { type AgentMessage, type RunSummary, type TestError, type TestResult, type TestStatus, type TestSuiteResult } from "frida-test/protocol.js";
2
2
 
3
3
  export type TestFn = () => void | Promise<void>;
4
4
 
File without changes