![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/rtlcss/test/ |
/* global describe */ /* global it */ var assert = require('assert') var rtlcss = require('../lib/rtlcss.js') var tests = { '# Background:': require('./data/background.js'), '# Background Image:': require('./data/background-image.js'), '# Background Position:': require('./data/background-position.js'), '# Properties:': require('./data/properties.js'), '# Values:': require('./data/values.js'), '# Values (N Value Syntax):': require('./data/values-n-syntax.js'), '# Transforms:': require('./data/transforms.js'), '# Transform Origin:': require('./data/transform-origin.js'), '# RTLCSS (Options):': require('./data/rtlcss-options.js'), '# RTLCSS (Directives):': require('./data/rtlcss-directives.js'), '# RTLCSS (String Map):': require('./data/rtlcss-stringMap.js'), '# RTLCSS (Plugins):': require('./data/rtlcss-plugins.js'), '# RTLCSS (Hooks):': require('./data/rtlcss-hooks.js'), '# Special:': require('./data/special.js'), '# Variables:': require('./data/variables.js') } var key for (key in tests) { var group = tests[key] describe(key, function () { for (var i = 0; i < group.length; i++) { var item = group[i] ;(function (test) { it(test.should, function (done) { assert.equal(rtlcss.process(test.input, test.options, test.plugins, test.hooks), test.expected) done() }) })(item) if (item.reversable) { (function (test) { it(test.should + ' <REVERESE>', function (done) { assert.equal(rtlcss.process(test.expected, test.options, test.plugins, test.hooks), test.input) done() }) })(item) } } }) }