summaryrefslogtreecommitdiff
path: root/Library/SDK/node_modules/terminal-escape-char/test.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-07-03 14:23:25 +0200
committerMinteck <contact@minteck.org>2022-07-03 14:23:25 +0200
commitd25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc (patch)
treea8e538a8e32b66fece6a10c198fe700866d1e233 /Library/SDK/node_modules/terminal-escape-char/test.js
downloadstrawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.tar.gz
strawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.tar.bz2
strawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.zip
Initial commit
Diffstat (limited to 'Library/SDK/node_modules/terminal-escape-char/test.js')
-rw-r--r--Library/SDK/node_modules/terminal-escape-char/test.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/SDK/node_modules/terminal-escape-char/test.js b/Library/SDK/node_modules/terminal-escape-char/test.js
new file mode 100644
index 0000000..f47050e
--- /dev/null
+++ b/Library/SDK/node_modules/terminal-escape-char/test.js
@@ -0,0 +1,8 @@
+var expect = require("chai").expect
+var escapeChar = require("./index")
+
+describe("escapeChar", function(){
+ it("is correct", function(){
+ expect(escapeChar).to.equal("\u001b")
+ })
+})