https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
486 B
14 lines
486 B
![]()
11 years ago
|
var render = require('../helper/render');
|
||
|
var ruleset = require('../helper/ruleset');
|
||
|
|
||
|
describe("CSS3 Transition", function () {
|
||
|
|
||
|
it("should generate a transition", function (done) {
|
||
|
render(ruleset('$experimental-support-for-mozilla: false; $experimental-support-for-opera: false; @include transition(ok 0s);'), function(output, err) {
|
||
|
expect(output).toBe(ruleset('-webkit-transition:ok 0s;transition:ok 0s;'));
|
||
|
done();
|
||
|
}, ['compass/css3/transition']);
|
||
|
});
|
||
|
|
||
|
});
|