Socket
Socket
Sign inDemoInstall

cortex-playground

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cortex-playground

Collections of test fixtures for cortex.


Version published
Weekly downloads
1
decreased by-92.31%
Maintainers
1
Weekly downloads
 
Created
Source

cortex-playground NPM version Build Status Dependency Status

Collections of test fixtures for cortex.

Install

$ npm install cortex-playground --save

Usage

For details, see test-fixture.

var playground = require('cortex-playground');
var packages = playground.packages;
var resources = playground.resources;
  • packages: contains raw files of the user repos
  • resources: contains built files, and each of the resource folder is built from the package which has the same name.

The usage of resources is the same as packages.

var normal = packages('normal');
// copy test fixtures into a temp directory.
normal.copy(function(err, dir){
  dir; // the temp directory
  normal.resolve(); // `dir` itself. 
  normal.resolve('cortex.json'); // returns the absolute path of `cortex.json`.
});

packages([name])

Use a package.

/path/to/playground/
  |-- packages/
             |-- a/                     // package a
                 |-- lib/
                       |-- index.js
             |-- b/                     // package b
  |-- resources/
              |-- a/
              |-- b/
packages(); // -> use all packages
packages('a'); // -> use package `'a'`
packages('a', 'lib'); // -> use the `lib` folder of package `'a'`

.copy([to], callback)

  • to path= the destination folder where test fixtures will be copied into. If not specified, they will be copied into a temp folder.
  • callback function(err, dir)
  • dir path a temporarily directory that contains all resources and nice toys which you will enjoy!

Copy the test fixtures to a temp dir.

.resolve([path...])

.resolve(); // -> the base

Returns path

Available Packages

As well as available resources.

  • normal: a common cases
  • css-not-found: an error case, pkg.css defined but not found
  • dir-not-found: an error case, directories.xxx defined but not found

License

MIT

Keywords

FAQs

Package last updated on 09 Jun 2014

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

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