easy-soft-develop 2.0.172 → 2.0.174
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/package.json
CHANGED
|
@@ -23,8 +23,10 @@ const configFile = {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
const simpleTestFileContent = `${fileGlobalHeader}
|
|
26
|
-
const content = \`
|
|
27
|
-
|
|
26
|
+
const content = \`describe('group test description', () => {
|
|
27
|
+
test('simple test will be true', () => {
|
|
28
|
+
expect(true).toBe(true);
|
|
29
|
+
});
|
|
28
30
|
});
|
|
29
31
|
\`;
|
|
30
32
|
|