Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stylable/core-test-kit

Package Overview
Dependencies
Maintainers
6
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stylable/core-test-kit

Stylable core test-kit

  • 4.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
212
increased by2255.56%
Maintainers
6
Weekly downloads
 
Created
Source

@stylable/core-test-kit

npm version

@stylable/core-test-kit is a collection of utilities aimed at making testing Stylable core behavior and functionality easier.

What's in this test-kit?

Matchers

An assortment of Chai matchers used by Stylable.

  • flat-match - flattens and matches passed arguments
  • results - test Stylable transpiled style rules output

Diagnostics tooling

A collection of tools aimed at testing Stylable diagnostics messages (warnings and errors).

Testing infrastructure

Used for easily setting up Stylable instances (processor/transformer) and its infrastructure.

Exposes expectTransformOutput utility for creating transformation tests. These are the most common core tests and the recommended way to test the core transform functionality.

Currently only supports testing target selector but when needed the functionality can be expended here to support:

  • JavaScript exports output
  • Declaration values
  • Mixins output
Example

Using the /* @expect selector */ comment to test the root class selector target

expectTransformOutput(
    {
        entry: `/style.st.css`,
        files: {
            '/style.st.css': {
                namespace: 'ns',
                content: `
                /* @expect .ns__root */
                .root {}
            `
        },
    },
    1
);

Match rules

Exposes two utility functions (matchRuleAndDeclaration and matchAllRulesAndDeclarations) used for testing Stylable generated AST representing CSS rules and declarations.

License

Copyright (c) 2019 Wix.com Ltd. All Rights Reserved. Use of this source code is governed by a BSD license.

FAQs

Package last updated on 22 Feb 2021

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