Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/jiff_delivery/node_modules/webpack-rtl-plugin/node_modules/rtlcss/test/ drwxrwxrwx | |
| Viewing file: Select action/file-type: /* 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)
}
}
})
}
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]-- |