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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.0.172",
3
+ "version": "2.0.174",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -201,7 +201,10 @@ function createVscode() {
201
201
  '**/bower_components': true,
202
202
  '**/*.code-search': true,
203
203
  '**/dist': true,
204
+ '**/coverage': true,
205
+ '**/docs': true,
204
206
  '**/es': true,
207
+ '**/pnpm-lock.yaml': true,
205
208
  },
206
209
  };
207
210
 
@@ -23,8 +23,10 @@ const configFile = {
23
23
  };
24
24
 
25
25
  const simpleTestFileContent = `${fileGlobalHeader}
26
- const content = \`test('jest simple', () => {
27
- expect(true).toBe(true);
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