Socket
Socket
Sign inDemoInstall

@cucumber/messages

Package Overview
Dependencies
4
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cucumber/messages

JSON schema-based messages for Cucumber's inter-process communication


Version published
Maintainers
2
Install size
1.34 MB
Created

Package description

What is @cucumber/messages?

The @cucumber/messages package is designed to provide a protocol for communication between different components of the Cucumber testing tool. It defines a set of message formats that can be used for representing test cases, test results, and other information in a standardized way. This facilitates interoperability between different parts of the Cucumber ecosystem, such as between the Cucumber framework itself and various plugins or integrations.

What are @cucumber/messages's main functionalities?

Serialization and Deserialization of Messages

This feature allows for the serialization and deserialization of Cucumber messages. It's useful for transmitting test results over a network or storing them in a file. The code sample demonstrates how to create an Envelope message, serialize it to a binary format, and then deserialize it back to a message object.

"use strict";
const { messages } = require('@cucumber/messages');
const { Envelope } = messages;
const envelope = Envelope.fromObject({ testStepFinished: { testStepResult: { status: 'PASSED' } } });
const serialized = Envelope.encode(envelope).finish();
const deserialized = Envelope.decode(serialized);

Creating and Working with Messages

This feature involves creating and manipulating various types of messages defined by the package, such as test cases, test steps, and results. The code sample shows how to create a TestCase message with specific properties.

"use strict";
const { messages } = require('@cucumber/messages');
const { TestCase } = messages;
const testCase = TestCase.create({ id: '1', pickleId: '2' });
console.log(testCase);

Other packages similar to @cucumber/messages

Changelog

Source

[24.1.0] - 2024-03-23

Added

  • [Java] Include stacktrace in Convertor.toMessage(Throwable) (#213)

Readme

Source

Cucumber Messages for JavaScript (JSON schema)

FAQs

Last updated on 23 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc