[6a3a178] | 1 | import postcss from 'postcss';
|
---|
| 2 | import { expect } from 'chai';
|
---|
| 3 |
|
---|
| 4 | import plugin from '..';
|
---|
| 5 |
|
---|
| 6 | const test = (input, output, opts, done) => {
|
---|
| 7 | postcss([
|
---|
| 8 | plugin(opts)
|
---|
| 9 | ])
|
---|
| 10 | .process(input, { from: '<inline>' })
|
---|
| 11 | .then(result => {
|
---|
| 12 | expect(result.css).to.eql(output);
|
---|
| 13 | expect(result.warnings()).to.be.empty; // eslint-disable-line no-unused-expressions
|
---|
| 14 |
|
---|
| 15 | done();
|
---|
| 16 | })
|
---|
| 17 | .catch(done);
|
---|
| 18 | };
|
---|
| 19 |
|
---|
| 20 | describe('postcss-attribute-case-insensitive', () => {
|
---|
| 21 | it('simple', done => {
|
---|
| 22 | test(
|
---|
| 23 | '[data-foo=test i] { display: block; }',
|
---|
| 24 | '[data-foo=test],[data-foo=Test],[data-foo=tEst],[data-foo=TEst],[data-foo=teSt],[data-foo=TeSt],[data-foo=tESt],[data-foo=TESt],[data-foo=tesT],[data-foo=TesT],[data-foo=tEsT],[data-foo=TEsT],[data-foo=teST],[data-foo=TeST],[data-foo=tEST],[data-foo=TEST] { display: block; }',
|
---|
| 25 | {},
|
---|
| 26 | done
|
---|
| 27 | );
|
---|
| 28 | });
|
---|
| 29 |
|
---|
| 30 | it('with spaces', done => {
|
---|
| 31 | test(
|
---|
| 32 | '[foo="a b" i]{}',
|
---|
| 33 | '[foo="a b"],[foo="A b"],[foo="a B"],[foo="A B"]{}',
|
---|
| 34 | {},
|
---|
| 35 | done
|
---|
| 36 | );
|
---|
| 37 | });
|
---|
| 38 |
|
---|
| 39 | it('not insensitive', done => {
|
---|
| 40 | test(
|
---|
| 41 | '[foo=a]{}',
|
---|
| 42 | '[foo=a]{}',
|
---|
| 43 | {},
|
---|
| 44 | done
|
---|
| 45 | );
|
---|
| 46 | });
|
---|
| 47 |
|
---|
| 48 | it('several attributes', done => {
|
---|
| 49 | test(
|
---|
| 50 | '[foo=a i],[foobar=b],[bar=c i]{}',
|
---|
| 51 | '[foobar=b],[foo=a],[foo=A],[bar=c],[bar=C]{}',
|
---|
| 52 | {},
|
---|
| 53 | done
|
---|
| 54 | );
|
---|
| 55 | });
|
---|
| 56 | });
|
---|