aboutsummaryrefslogtreecommitdiff
path: root/node_modules/wcwidth/test
diff options
context:
space:
mode:
authorScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
committerScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
commita927497b43cbe1438f3d7478932f3f7d03ea347c (patch)
tree0a3c88978b4294fb30afad58daa86c46fbedc2f6 /node_modules/wcwidth/test
parentba5fa694351774f2684c1aefdc215da5c6f39ba6 (diff)
parentf0db5bbbcd623812a391862d217519afafe197c6 (diff)
downloadtwilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.gz
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.bz2
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.zip
Merge branch 'deprecation' into 'trunk'HEADtrunk
Disable the Twilight Package Manager See merge request minteck/twilight!1
Diffstat (limited to 'node_modules/wcwidth/test')
-rw-r--r--node_modules/wcwidth/test/index.js64
1 files changed, 0 insertions, 64 deletions
diff --git a/node_modules/wcwidth/test/index.js b/node_modules/wcwidth/test/index.js
deleted file mode 100644
index 5180599..0000000
--- a/node_modules/wcwidth/test/index.js
+++ /dev/null
@@ -1,64 +0,0 @@
-"use strict"
-
-var wcwidth = require('../')
-var test = require('tape')
-
-test('handles regular strings', function(t) {
- t.strictEqual(wcwidth('abc'), 3)
- t.end()
-})
-
-test('handles multibyte strings', function(t) {
- t.strictEqual(wcwidth('字的模块'), 8)
- t.end()
-})
-
-test('handles multibyte characters mixed with regular characters', function(t) {
- t.strictEqual(wcwidth('abc 字的模块'), 12)
- t.end()
-})
-
-test('ignores control characters e.g. \\n', function(t) {
- t.strictEqual(wcwidth('abc\n字的模块\ndef'), 14)
- t.end()
-})
-
-test('ignores bad input', function(t) {
- t.strictEqual(wcwidth(''), 0)
- t.strictEqual(wcwidth(3), 0)
- t.strictEqual(wcwidth({}), 0)
- t.strictEqual(wcwidth([]), 0)
- t.strictEqual(wcwidth(), 0)
- t.end()
-})
-
-test('ignores nul (charcode 0)', function(t) {
- t.strictEqual(wcwidth(String.fromCharCode(0)), 0)
- t.end()
-})
-
-test('ignores nul mixed with chars', function(t) {
- t.strictEqual(wcwidth('a' + String.fromCharCode(0) + '\n字的'), 5)
- t.end()
-})
-
-test('can have custom value for nul', function(t) {
- t.strictEqual(wcwidth.config({
- nul: 10
- })(String.fromCharCode(0) + 'a字的'), 15)
- t.end()
-})
-
-test('can have custom control char value', function(t) {
- t.strictEqual(wcwidth.config({
- control: 1
- })('abc\n字的模块\ndef'), 16)
- t.end()
-})
-
-test('negative custom control chars == -1', function(t) {
- t.strictEqual(wcwidth.config({
- control: -1
- })('abc\n字的模块\ndef'), -1)
- t.end()
-})