We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e328fcc commit 9b446abCopy full SHA for 9b446ab
test/en-US.test.js
@@ -0,0 +1,12 @@
1
+const assert = require('assert');
2
+const translations = require('../en-US.js');
3
+
4
+describe('en-US translations', function() {
5
+ it('should have correct translation for "启动失败"', function() {
6
+ assert.strictEqual(translations['启动失败'], 'failed');
7
+ });
8
9
+ it('should have correct translation for "系统提示"', function() {
10
+ assert.strictEqual(translations['系统提示'], 'System infomation');
11
12
+});
0 commit comments