Skip to content

Commit

Permalink
test: rename test/cases.js to test/data.js
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Jun 22, 2019
1 parent 8d4c004 commit 75d084d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const assert = require('assert');
const css = require('css');
const cases = require('./cases');
const parse = require('../');
const data = require('./data');
const parse = require('..');

describe('parser', () => {
cases.default.forEach(({ style, expected }) => {
data.default.forEach(({ style, expected }) => {
// error case
describe(`when style=\`${style}\``, () => {
if (expected === Error) {
Expand Down

0 comments on commit 75d084d

Please sign in to comment.