🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@capsulajs/capsulahub-service-test-ci

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capsulajs/capsulahub-service-test-ci

A service template package for an extension

latest
npmnpm
Version
0.0.1
Version published
Maintainers
4
Created
Source

Service Template extension

Service detailed info

Install

NPM

To install the package from NPM registry you should run

yarn add @capsulajs/capsulahub-service-template

or

npm install @capsulajs/capsulahub-service-template

CDN

You can get the default export from the link

https://capsulajs.s3.amazonaws.com/develop/service-template/index.js

WorkspaceConfiguration example

  "services": {
      "serviceName": "TestService",
      "path": "https://capsulajs.s3.amazonaws.com/develop/service-template/index.js",
      "definition": {
        "serviceName": "TestService",
        "methods": {
          "showMessage": { "asyncModel": "requestResponse" }
        }
      },
      "config": { "message": "Test message" }
  }

Exports

Default

Bootstrap function of the extension.

Named (API)

The public API of the extension.

API

CDN

The documentation about public API.

Local

Run

yarn doc

And open doc/index.html in browser.

Example

All of the manual debugging should be provided only in test:debug mode. Example folder is required only for Cypress needs.

Tests

Run

  • yarn test
  • yarn test:debug

Recommendations for testing

getServiceRef() checks that the service has been bootstrapped correctly and returns the instance of the service.

In order to create a stub or spy of any util a file with utils has to export an object, in which these utils are implemented. Then in the implementation of a test you can do:

import utils from '../../src/utils';
const getConfigStub = cy.stub(utils, getConfig);
getConfigStub.resolves({ name: 'configuration name' });

// run some code from functionality
expect(getConfigStub).to.be.called;

Expectations for stubs and spies:

https://docs.cypress.io/guides/references/assertions.html#Sinon-Chai

Licence

CapsulaHub and related services are released under MIT Licence.

Back to the Main Page

FAQs

Package last updated on 23 Jun 2019

Did you know?

Socket

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