@include describe('Breakpoint') {
@include it('converts a named breakpoint to an em value') {
$actual: breakpoint(medium);
- $expected: '(min-width: 32em)';
+ $expected: '(min-width: 40em)';
@include should(expect($actual), to(be($expected)));
}
@include it('creates an only range out of a named breakpoint') {
$actual: breakpoint(medium only);
- $expected: '(min-width: 32em) and (max-width: 63.9375em)';
+ $expected: '(min-width: 40em) and (max-width: 63.9375em)';
@include should(expect($actual), to(be($expected)));
}
@include describe('Text inputs') {
@include it('creates a selector out of a list of text input types') {
$actual: #{text-inputs(text password)};
- $expected: '[type='text'], [type='password']';
+ $expected: "[type='text'], [type='password']";
@debug $actual;