Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

detox-copilot

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

detox-copilot - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

5

dist/index.js

@@ -11,7 +11,6 @@ "use strict";

},
perform: async (steps) => {
perform: async (...steps) => {
const copilotInstance = Copilot_1.Copilot.getInstance();
const intents = Array.isArray(steps) ? steps : [steps];
const results = new Array();
for (const intent of intents) {
for (const intent of steps) {
results.push(await copilotInstance.performStep(intent));

@@ -18,0 +17,0 @@ }

7

dist/types.d.ts

@@ -24,8 +24,5 @@ /**

* @example The welcome message text should be "Hello, world!"
* @example [
* 'Tap on the login button',
* 'A login form should be visible',
* ]
* @example 'Tap on the login button', 'A login form should be visible'
*/
perform: (steps: string | string[]) => Promise<any | any[]>;
perform: (...steps: string[]) => Promise<any | any[]>;
}

@@ -32,0 +29,0 @@ /**

{
"name": "detox-copilot",
"version": "0.0.10",
"version": "0.0.11",
"description": "A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc