Socket
Socket
Sign inDemoInstall

cortex-playground

Package Overview
Dependencies
20
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cortex-playground

Collections of test fixtures for cortex.


Version published
Weekly downloads
3
decreased by-80%
Maintainers
2
Install size
935 kB
Created
Weekly downloads
 

Readme

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

Last updated on 17 Jul 2014

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