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 f61a031 commit 9cc7db3Copy full SHA for 9cc7db3
src/test/wrapper.spec.ts
@@ -7,33 +7,6 @@ import { Wrapper } from '../lib/wrapper.class';
7
const testing = new Testing(true, true);
8
const toBe = new TestingToBeMatchers();
9
10
-const w = new Wrapper('[', ']', '{my text}');
11
-
12
-console.log(`---`);
13
14
-console.log(w.wrap('<', '>'));
15
-console.log(w.wrapOn('my new text'));
16
17
-console.log(w.wrapText('<', '>'));
18
19
-console.log(w.isWrapped());
20
-console.log(w.isWrapped('['));
21
-console.log(w.isWrapped(undefined, ']'));
22
-console.log(w.isWrapped('[', ']'));
23
24
-console.log(w.toWrap());
25
-console.log(w.removeWrapIn(w.valueOf()));
26
-console.log(w.unwrap());
27
-console.log(w.unwrapText());
28
-console.log(w.unwrapText('{', '}'));
29
30
31
32
-console.log(w.textReplaceClosing('<'));
33
-console.log(w.textReplaceOpening('>'));
34
-console.log(w.textUnwrap());
35
-console.log(w.textWrap('<', '>'));
36
37
testing.describe(`Wrapper`, () => {
38
const opening = `<`;
39
const replaceOpening = '{{';
0 commit comments