ep_headings2 0.2.63 → 0.2.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/locales/fa.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@metadata": {
|
|
3
|
+
"authors": [
|
|
4
|
+
"Darafsh"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"ep_headings.style": "سبک",
|
|
8
|
+
"ep_headings.normal": "عادی",
|
|
9
|
+
"ep_headings.h1": "سرعنوان ۱",
|
|
10
|
+
"ep_headings.h2": "سرعنوان ۲",
|
|
11
|
+
"ep_headings.h3": "سرعنوان ۳",
|
|
12
|
+
"ep_headings.h4": "سرعنوان ۴",
|
|
13
|
+
"ep_headings.code": "کد"
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
3
|
+
import {init} from "ep_etherpad-lite/tests/backend/common";
|
|
4
|
+
|
|
5
|
+
import {randomString} from 'ep_etherpad-lite/static/js/pad_utils'
|
|
6
|
+
import {generateJWTToken} from "ep_etherpad-lite/tests/backend/common";
|
|
6
7
|
|
|
7
8
|
let agent;
|
|
8
9
|
const apiVersion = 1;
|
|
@@ -35,7 +36,7 @@ describe('ep_headings2 - export headings to HTML', function () {
|
|
|
35
36
|
let padID;
|
|
36
37
|
let html;
|
|
37
38
|
|
|
38
|
-
before(async function () { agent = await
|
|
39
|
+
before(async function () { agent = await init(); });
|
|
39
40
|
|
|
40
41
|
// create a new pad before each test run
|
|
41
42
|
beforeEach(function (done) {
|