JSPM

  • Created
  • Published
  • Downloads 115
  • Score
    100M100P100Q8716F
  • License MIT

End-to-end testing framework for Paper/Spigot Minecraft plugins

Package Exports

  • @drownek/paper-e2e-runner
  • @drownek/paper-e2e-runner/dist/runner.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@drownek/paper-e2e-runner) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@drownek/paper-e2e-runner

End-to-end testing runner for Paper/Spigot Minecraft plugins.

Installation

npm install @drownek/paper-e2e-runner

Quick Start

import { test, expect } from '@drownek/paper-e2e-runner';

test('player can join server', async ({ player }) => {
  await player.chat('/help');
  await expect(player).toHaveReceivedMessage('Available commands');
});

Documentation

Full documentation is available in the GitHub repository Wiki.

License

MIT