2018-06-15 11:03:24 -04:00
|
|
|
import { isRTL, isLTR } from "discourse/lib/text-direction";
|
2018-01-29 22:16:35 -05:00
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
QUnit.module("lib:text-direction");
|
2018-01-29 22:16:35 -05:00
|
|
|
|
|
|
|
QUnit.test("isRTL", assert => {
|
|
|
|
// Hebrew
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(isRTL("זה מבחן"), true);
|
2018-01-29 22:16:35 -05:00
|
|
|
|
|
|
|
// Arabic
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(isRTL("هذا اختبار"), true);
|
2018-01-29 22:16:35 -05:00
|
|
|
|
|
|
|
// Persian
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(isRTL("این یک امتحان است"), true);
|
2018-01-29 22:16:35 -05:00
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(isRTL("This is a test"), false);
|
|
|
|
assert.equal(isRTL(""), false);
|
2018-01-29 22:16:35 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("isLTR", assert => {
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(isLTR("This is a test"), true);
|
|
|
|
assert.equal(isLTR("זה מבחן"), false);
|
2018-01-29 22:16:35 -05:00
|
|
|
});
|