https://github.com/webdiscus/test-fixtures-scss
SCSS test fixture module
https://github.com/webdiscus/test-fixtures-scss
Last synced: 4 months ago
JSON representation
SCSS test fixture module
- Host: GitHub
- URL: https://github.com/webdiscus/test-fixtures-scss
- Owner: webdiscus
- License: isc
- Created: 2022-08-07T18:06:54.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-08T09:38:35.000Z (almost 4 years ago)
- Last Synced: 2025-08-08T23:15:32.121Z (10 months ago)
- Language: SCSS
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/@test-fixtures/scss "download npm package")
[](https://www.npmjs.com/package/@test-fixtures/scss)
# @test-fixtures/scss
This is a SCSS test fixture library to simulate a usage of SCSS from node modules.
## Install
```
npm i -D @test-fixtures/scss
```
## Usage
```scss
@use '@test-fixtures/scss' as fixture;
.primary {
color: fixture.$primary;
}
.secondary {
color: fixture.$secondary;
}
.success {
color: fixture.$success;
}
.info {
color: fixture.$info;
}
.warning {
color: fixture.$warning;
}
.danger {
color: fixture.$danger;
}
```