test-gen-js 0.1.2 โ 0.1.3
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/README.md +143 -143
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,50 +8,50 @@
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
## ๐ฏ
|
|
11
|
+
## ๐ฏ Goal
|
|
12
12
|
|
|
13
|
-
> **"
|
|
13
|
+
> **"From zero tests to having basic tests"**
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
This library is not about perfect test automation, but about **lowering the barrier to writing tests**.
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### Problems This Tool Solves
|
|
18
18
|
|
|
19
|
-
|
|
|
20
|
-
|
|
21
|
-
| ๐ซ "
|
|
22
|
-
| ๐ค "
|
|
23
|
-
| ๐ฐ "
|
|
24
|
-
| ๐ "
|
|
19
|
+
| Problem | Solution |
|
|
20
|
+
|---------|----------|
|
|
21
|
+
| ๐ซ "Creating test files is tedious" | โ
Auto-generate boilerplate |
|
|
22
|
+
| ๐ค "I don't know how to start" | โ
Provide a working starting point |
|
|
23
|
+
| ๐ฐ "I don't even have basic render tests" | โ
Provide minimal safety net |
|
|
24
|
+
| ๐ "I want to learn how to write tests" | โ
Use as a learning tool |
|
|
25
25
|
|
|
26
|
-
###
|
|
26
|
+
### Limitations
|
|
27
27
|
|
|
28
28
|
```
|
|
29
|
-
โ
|
|
30
|
-
โ
|
|
29
|
+
โ Auto-generate business logic tests โ Developers must write these
|
|
30
|
+
โ Perfect test coverage โ Not possible (80% boilerplate, 20% manual)
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
-
## ๐ฆ
|
|
35
|
+
## ๐ฆ Installation
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
#
|
|
38
|
+
# Global installation
|
|
39
39
|
npm install -g test-gen-js
|
|
40
40
|
|
|
41
|
-
#
|
|
41
|
+
# Or use with npx (no installation required)
|
|
42
42
|
npx test-gen-js generate src/components/Button.tsx
|
|
43
43
|
|
|
44
|
-
#
|
|
44
|
+
# Or install as devDependency
|
|
45
45
|
npm install -D test-gen-js
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
---
|
|
49
49
|
|
|
50
|
-
## ๐
|
|
50
|
+
## ๐ Quick Start
|
|
51
51
|
|
|
52
|
-
### 1. React
|
|
52
|
+
### 1. Generate React Component Tests
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
**Input: `src/components/Button.tsx`**
|
|
55
55
|
|
|
56
56
|
```tsx
|
|
57
57
|
import React from 'react';
|
|
@@ -72,13 +72,13 @@ export const Button = ({ title, onPress, disabled = false, loading = false }: Bu
|
|
|
72
72
|
};
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
**Run command:**
|
|
76
76
|
|
|
77
77
|
```bash
|
|
78
78
|
npx test-gen-js generate src/components/Button.tsx
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
**Output: `src/components/Button.test.tsx`**
|
|
82
82
|
|
|
83
83
|
```tsx
|
|
84
84
|
import React from 'react';
|
|
@@ -120,9 +120,9 @@ describe('Button', () => {
|
|
|
120
120
|
|
|
121
121
|
---
|
|
122
122
|
|
|
123
|
-
### 2. React Native
|
|
123
|
+
### 2. Generate React Native Component Tests
|
|
124
124
|
|
|
125
|
-
|
|
125
|
+
**Input: `src/components/Card.tsx`**
|
|
126
126
|
|
|
127
127
|
```tsx
|
|
128
128
|
import React, { useState } from 'react';
|
|
@@ -152,13 +152,13 @@ const styles = StyleSheet.create({
|
|
|
152
152
|
});
|
|
153
153
|
```
|
|
154
154
|
|
|
155
|
-
|
|
155
|
+
**Run command:**
|
|
156
156
|
|
|
157
157
|
```bash
|
|
158
158
|
npx test-gen-js generate src/components/Card.tsx --snapshot
|
|
159
159
|
```
|
|
160
160
|
|
|
161
|
-
|
|
161
|
+
**Output: `src/components/Card.test.tsx`**
|
|
162
162
|
|
|
163
163
|
```tsx
|
|
164
164
|
import React from 'react';
|
|
@@ -203,9 +203,9 @@ describe('Card', () => {
|
|
|
203
203
|
|
|
204
204
|
---
|
|
205
205
|
|
|
206
|
-
### 3.
|
|
206
|
+
### 3. Generate Function Tests
|
|
207
207
|
|
|
208
|
-
|
|
208
|
+
**Input: `src/utils/calculate.ts`**
|
|
209
209
|
|
|
210
210
|
```typescript
|
|
211
211
|
export function calculateDiscount(price: number, discountRate: number): number {
|
|
@@ -221,13 +221,13 @@ export async function fetchUserData(userId: string): Promise<User> {
|
|
|
221
221
|
}
|
|
222
222
|
```
|
|
223
223
|
|
|
224
|
-
|
|
224
|
+
**Run command:**
|
|
225
225
|
|
|
226
226
|
```bash
|
|
227
227
|
npx test-gen-js generate src/utils/calculate.ts
|
|
228
228
|
```
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
**Output: `src/utils/calculate.test.ts`**
|
|
231
231
|
|
|
232
232
|
```typescript
|
|
233
233
|
import { calculateDiscount, fetchUserData } from './calculate';
|
|
@@ -279,58 +279,58 @@ describe('fetchUserData', () => {
|
|
|
279
279
|
|
|
280
280
|
---
|
|
281
281
|
|
|
282
|
-
## ๐ CLI
|
|
282
|
+
## ๐ CLI Commands
|
|
283
283
|
|
|
284
|
-
### `generate` (
|
|
284
|
+
### `generate` (alias: `g`)
|
|
285
285
|
|
|
286
|
-
|
|
286
|
+
Generate tests for a single file
|
|
287
287
|
|
|
288
288
|
```bash
|
|
289
|
-
#
|
|
289
|
+
# Basic usage
|
|
290
290
|
test-gen-js generate <file>
|
|
291
291
|
tgjs g <file>
|
|
292
292
|
|
|
293
|
-
#
|
|
294
|
-
--output, -o <path> #
|
|
295
|
-
--template, -t <type> #
|
|
296
|
-
--snapshot #
|
|
297
|
-
--mock #
|
|
298
|
-
--overwrite #
|
|
293
|
+
# Options
|
|
294
|
+
--output, -o <path> # Specify output file path
|
|
295
|
+
--template, -t <type> # Template type (component | function | hook)
|
|
296
|
+
--snapshot # Include snapshot tests
|
|
297
|
+
--mock # Auto-generate mocks (default: true)
|
|
298
|
+
--overwrite # Overwrite existing file
|
|
299
299
|
```
|
|
300
300
|
|
|
301
|
-
|
|
301
|
+
**Examples:**
|
|
302
302
|
|
|
303
303
|
```bash
|
|
304
|
-
#
|
|
304
|
+
# Basic generation
|
|
305
305
|
tgjs g src/components/Header.tsx
|
|
306
306
|
|
|
307
|
-
#
|
|
307
|
+
# Include snapshot tests
|
|
308
308
|
tgjs g src/components/Header.tsx --snapshot
|
|
309
309
|
|
|
310
|
-
#
|
|
310
|
+
# Custom output path
|
|
311
311
|
tgjs g src/components/Header.tsx -o __tests__/Header.test.tsx
|
|
312
312
|
|
|
313
|
-
#
|
|
313
|
+
# Overwrite existing file
|
|
314
314
|
tgjs g src/components/Header.tsx --overwrite
|
|
315
315
|
```
|
|
316
316
|
|
|
317
|
-
### `scan` (
|
|
317
|
+
### `scan` (alias: `s`) - Coming in v0.2.0
|
|
318
318
|
|
|
319
|
-
|
|
319
|
+
Scan directory and generate tests for all files
|
|
320
320
|
|
|
321
321
|
```bash
|
|
322
|
-
#
|
|
322
|
+
# Basic usage
|
|
323
323
|
test-gen-js scan <directory>
|
|
324
324
|
|
|
325
|
-
#
|
|
326
|
-
--dry-run #
|
|
327
|
-
--pattern <glob> #
|
|
328
|
-
--exclude <patterns> #
|
|
325
|
+
# Options
|
|
326
|
+
--dry-run # Preview without creating files
|
|
327
|
+
--pattern <glob> # File pattern (default: **/*.{ts,tsx,js,jsx})
|
|
328
|
+
--exclude <patterns> # Patterns to exclude
|
|
329
329
|
```
|
|
330
330
|
|
|
331
|
-
### `init` - v0.2.0
|
|
331
|
+
### `init` - Coming in v0.2.0
|
|
332
332
|
|
|
333
|
-
|
|
333
|
+
Initialize configuration file
|
|
334
334
|
|
|
335
335
|
```bash
|
|
336
336
|
test-gen-js init
|
|
@@ -338,29 +338,29 @@ test-gen-js init
|
|
|
338
338
|
|
|
339
339
|
---
|
|
340
340
|
|
|
341
|
-
## ๐
|
|
341
|
+
## ๐ Supported Types
|
|
342
342
|
|
|
343
|
-
|
|
|
344
|
-
|
|
345
|
-
| JavaScript
|
|
346
|
-
| TypeScript
|
|
347
|
-
| React
|
|
348
|
-
| React Native
|
|
343
|
+
| Type | Support | Test Framework | Notes |
|
|
344
|
+
|------|---------|----------------|-------|
|
|
345
|
+
| JavaScript functions | โ
| Jest | |
|
|
346
|
+
| TypeScript functions | โ
| Jest | Type analysis supported |
|
|
347
|
+
| React components | โ
| Jest + @testing-library/react | |
|
|
348
|
+
| React Native components | โ
| Jest + @testing-library/react-native | |
|
|
349
349
|
| Custom Hooks | โ
| Jest + @testing-library/react-hooks | |
|
|
350
|
-
| Node.js
|
|
351
|
-
| Express
|
|
352
|
-
| Vue
|
|
353
|
-
| Angular
|
|
350
|
+
| Node.js modules | ๐ v0.2 | Jest | |
|
|
351
|
+
| Express handlers | ๐ v0.2 | Jest + supertest | |
|
|
352
|
+
| Vue components | ๐ Plugin | Vitest | |
|
|
353
|
+
| Angular components | ๐ Plugin | Jasmine | |
|
|
354
354
|
|
|
355
355
|
---
|
|
356
356
|
|
|
357
|
-
## ๐ง
|
|
357
|
+
## ๐ง How It Works
|
|
358
358
|
|
|
359
|
-
### AST (Abstract Syntax Tree)
|
|
359
|
+
### AST (Abstract Syntax Tree) Analysis
|
|
360
360
|
|
|
361
361
|
```
|
|
362
362
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
363
|
-
โ 1.
|
|
363
|
+
โ 1. Input: Button.tsx โ
|
|
364
364
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
365
365
|
โ export const Button = ({ title, onPress, disabled }) => { โ
|
|
366
366
|
โ const [loading, setLoading] = useState(false); โ
|
|
@@ -374,7 +374,7 @@ test-gen-js init
|
|
|
374
374
|
โ
|
|
375
375
|
โผ Babel Parser
|
|
376
376
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
377
|
-
โ 2. AST
|
|
377
|
+
โ 2. AST Analysis Result โ
|
|
378
378
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
379
379
|
โ { โ
|
|
380
380
|
โ name: "Button", โ
|
|
@@ -392,7 +392,7 @@ test-gen-js init
|
|
|
392
392
|
โ
|
|
393
393
|
โผ EJS Template
|
|
394
394
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
395
|
-
โ 3.
|
|
395
|
+
โ 3. Output: Button.test.tsx โ
|
|
396
396
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
397
397
|
โ describe('Button', () => { โ
|
|
398
398
|
โ const defaultProps = { title: '...', onPress: jest.fn() }; โ
|
|
@@ -403,90 +403,90 @@ test-gen-js init
|
|
|
403
403
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
404
404
|
```
|
|
405
405
|
|
|
406
|
-
###
|
|
406
|
+
### Automation Coverage
|
|
407
407
|
|
|
408
|
-
|
|
|
409
|
-
|
|
410
|
-
|
|
|
411
|
-
| describe/it
|
|
412
|
-
| defaultProps
|
|
413
|
-
| Mock
|
|
414
|
-
|
|
|
415
|
-
|
|
|
416
|
-
| Hook
|
|
417
|
-
|
|
|
408
|
+
| Area | Automation Level | Description |
|
|
409
|
+
|------|------------------|-------------|
|
|
410
|
+
| Import statements | โ
100% | Auto-detect framework |
|
|
411
|
+
| describe/it structure | โ
100% | Based on component/function name |
|
|
412
|
+
| defaultProps generation | โ
80% | TypeScript type analysis |
|
|
413
|
+
| Mock setup | โ
70% | Auto-detect major libraries |
|
|
414
|
+
| Render tests | โ
100% | Always provided |
|
|
415
|
+
| Event handler tests | โ
60% | Detect onPress, onClick, etc. |
|
|
416
|
+
| Hook tests | โ
50% | Detect useState, useEffect, etc. |
|
|
417
|
+
| **Business logic tests** | โ 0% | **Developer must write** |
|
|
418
418
|
|
|
419
419
|
---
|
|
420
420
|
|
|
421
|
-
## ๐บ๏ธ
|
|
421
|
+
## ๐บ๏ธ Roadmap
|
|
422
422
|
|
|
423
|
-
### โ
1
|
|
423
|
+
### โ
Phase 1: MVP (v0.1.x) - Current
|
|
424
424
|
|
|
425
|
-
- [x]
|
|
426
|
-
- [x] AST
|
|
427
|
-
- [x] CLI
|
|
428
|
-
- [x]
|
|
429
|
-
- [x] React
|
|
430
|
-
- [x] React Native
|
|
431
|
-
- [x] JavaScript/TypeScript
|
|
432
|
-
- [x] EJS
|
|
425
|
+
- [x] Project structure setup
|
|
426
|
+
- [x] AST parser implementation (Babel-based)
|
|
427
|
+
- [x] CLI interface (commander)
|
|
428
|
+
- [x] Basic test generator
|
|
429
|
+
- [x] React components
|
|
430
|
+
- [x] React Native components
|
|
431
|
+
- [x] JavaScript/TypeScript functions
|
|
432
|
+
- [x] EJS template system
|
|
433
433
|
- [x] GitHub Actions CI/CD
|
|
434
|
-
- [x] npm
|
|
434
|
+
- [x] Automated npm publishing
|
|
435
435
|
|
|
436
|
-
### ๐ 2
|
|
436
|
+
### ๐ Phase 2: Extended Features (v0.2.x)
|
|
437
437
|
|
|
438
|
-
- [ ]
|
|
439
|
-
- [ ]
|
|
440
|
-
- [ ] Node.js
|
|
441
|
-
- [ ]
|
|
442
|
-
- [ ] Prettier/ESLint
|
|
443
|
-
- [ ] Watch
|
|
444
|
-
- [ ]
|
|
438
|
+
- [ ] Directory scanning and batch generation (`scan` command)
|
|
439
|
+
- [ ] Configuration file support (`.testgenrc.js`)
|
|
440
|
+
- [ ] Node.js backend support
|
|
441
|
+
- [ ] Improved mock generation
|
|
442
|
+
- [ ] Prettier/ESLint integration
|
|
443
|
+
- [ ] Watch mode
|
|
444
|
+
- [ ] Custom template support
|
|
445
445
|
|
|
446
|
-
### ๐ฎ 3
|
|
446
|
+
### ๐ฎ Phase 3: Plugin System (v0.3.x+)
|
|
447
447
|
|
|
448
|
-
- [ ]
|
|
449
|
-
- [ ] Vue.js
|
|
450
|
-
- [ ] Angular
|
|
451
|
-
- [ ] VS Code
|
|
452
|
-
- [ ] AI
|
|
448
|
+
- [ ] Plugin architecture
|
|
449
|
+
- [ ] Vue.js plugin
|
|
450
|
+
- [ ] Angular plugin
|
|
451
|
+
- [ ] VS Code extension
|
|
452
|
+
- [ ] AI integration (optional)
|
|
453
453
|
|
|
454
454
|
---
|
|
455
455
|
|
|
456
|
-
## ๐
|
|
456
|
+
## ๐ Project Structure
|
|
457
457
|
|
|
458
458
|
```
|
|
459
459
|
test-gen-js/
|
|
460
460
|
โโโ bin/
|
|
461
|
-
โ โโโ cli.js # CLI
|
|
461
|
+
โ โโโ cli.js # CLI entry point
|
|
462
462
|
โโโ src/
|
|
463
|
-
โ โโโ index.ts #
|
|
464
|
-
โ โโโ cli.ts # CLI
|
|
465
|
-
โ โโโ types.ts # TypeScript
|
|
463
|
+
โ โโโ index.ts # Main exports
|
|
464
|
+
โ โโโ cli.ts # CLI logic (commander)
|
|
465
|
+
โ โโโ types.ts # TypeScript type definitions
|
|
466
466
|
โ โโโ analyzer/
|
|
467
467
|
โ โ โโโ index.ts
|
|
468
|
-
โ โ โโโ fileAnalyzer.ts #
|
|
469
|
-
โ โ โโโ componentAnalyzer.ts # React
|
|
470
|
-
โ โ โโโ functionAnalyzer.ts #
|
|
468
|
+
โ โ โโโ fileAnalyzer.ts # Main file analysis
|
|
469
|
+
โ โ โโโ componentAnalyzer.ts # React component analysis
|
|
470
|
+
โ โ โโโ functionAnalyzer.ts # Function analysis
|
|
471
471
|
โ โโโ parser/
|
|
472
472
|
โ โ โโโ index.ts
|
|
473
|
-
โ โ โโโ astParser.ts # Babel AST
|
|
474
|
-
โ โ โโโ typeExtractor.ts # TypeScript
|
|
473
|
+
โ โ โโโ astParser.ts # Babel AST parsing
|
|
474
|
+
โ โ โโโ typeExtractor.ts # TypeScript type extraction
|
|
475
475
|
โ โโโ generator/
|
|
476
476
|
โ โ โโโ index.ts
|
|
477
|
-
โ โ โโโ testGenerator.ts #
|
|
478
|
-
โ โ โโโ mockGenerator.ts # Mock
|
|
477
|
+
โ โ โโโ testGenerator.ts # Test code generation
|
|
478
|
+
โ โ โโโ mockGenerator.ts # Mock code generation
|
|
479
479
|
โ โโโ templates/
|
|
480
|
-
โ โ โโโ component.ejs #
|
|
481
|
-
โ โ โโโ function.ejs #
|
|
482
|
-
โ โ โโโ snapshot.ejs #
|
|
480
|
+
โ โ โโโ component.ejs # Component test template
|
|
481
|
+
โ โ โโโ function.ejs # Function test template
|
|
482
|
+
โ โ โโโ snapshot.ejs # Snapshot test template
|
|
483
483
|
โ โโโ utils/
|
|
484
|
-
โ โโโ fileUtils.ts #
|
|
485
|
-
โ โโโ naming.ts #
|
|
484
|
+
โ โโโ fileUtils.ts # File utilities
|
|
485
|
+
โ โโโ naming.ts # Naming utilities
|
|
486
486
|
โโโ .github/
|
|
487
487
|
โ โโโ workflows/
|
|
488
|
-
โ โโโ ci.yml # CI (
|
|
489
|
-
โ โโโ publish.yml # npm
|
|
488
|
+
โ โโโ ci.yml # CI (build/test)
|
|
489
|
+
โ โโโ publish.yml # Automated npm publish
|
|
490
490
|
โโโ package.json
|
|
491
491
|
โโโ tsconfig.json
|
|
492
492
|
โโโ README.md
|
|
@@ -494,11 +494,11 @@ test-gen-js/
|
|
|
494
494
|
|
|
495
495
|
---
|
|
496
496
|
|
|
497
|
-
## ๐ค
|
|
497
|
+
## ๐ค Contributing
|
|
498
498
|
|
|
499
|
-
|
|
499
|
+
Contributions are always welcome!
|
|
500
500
|
|
|
501
|
-
###
|
|
501
|
+
### How to Contribute
|
|
502
502
|
|
|
503
503
|
1. ๐ด Fork the repository
|
|
504
504
|
2. ๐ฟ Create your feature branch (`git checkout -b feature/amazing-feature`)
|
|
@@ -506,33 +506,33 @@ test-gen-js/
|
|
|
506
506
|
4. ๐ค Push to the branch (`git push origin feature/amazing-feature`)
|
|
507
507
|
5. ๐ Open a Pull Request
|
|
508
508
|
|
|
509
|
-
###
|
|
509
|
+
### Types of Contributions
|
|
510
510
|
|
|
511
|
-
- ๐
|
|
512
|
-
- ๐ก
|
|
513
|
-
- ๐
|
|
514
|
-
- ๐ง
|
|
515
|
-
- ๐
|
|
511
|
+
- ๐ Bug reports
|
|
512
|
+
- ๐ก Feature requests
|
|
513
|
+
- ๐ Documentation improvements
|
|
514
|
+
- ๐ง Code contributions
|
|
515
|
+
- ๐ Translations
|
|
516
516
|
|
|
517
517
|
---
|
|
518
518
|
|
|
519
|
-
## ๐
|
|
519
|
+
## ๐ License
|
|
520
520
|
|
|
521
|
-
MIT License -
|
|
521
|
+
MIT License - Feel free to use, modify, and distribute.
|
|
522
522
|
|
|
523
523
|
---
|
|
524
524
|
|
|
525
|
-
## ๐
|
|
525
|
+
## ๐ Acknowledgments
|
|
526
526
|
|
|
527
|
-
- [Babel](https://babeljs.io/) - JavaScript AST
|
|
528
|
-
- [Jest](https://jestjs.io/) -
|
|
529
|
-
- [Testing Library](https://testing-library.com/) -
|
|
530
|
-
- [Commander.js](https://github.com/tj/commander.js) - CLI
|
|
531
|
-
- [EJS](https://ejs.co/) -
|
|
527
|
+
- [Babel](https://babeljs.io/) - JavaScript AST parsing
|
|
528
|
+
- [Jest](https://jestjs.io/) - Testing framework
|
|
529
|
+
- [Testing Library](https://testing-library.com/) - Testing utilities
|
|
530
|
+
- [Commander.js](https://github.com/tj/commander.js) - CLI framework
|
|
531
|
+
- [EJS](https://ejs.co/) - Template engine
|
|
532
532
|
|
|
533
533
|
---
|
|
534
534
|
|
|
535
|
-
## ๐
|
|
535
|
+
## ๐ Contact
|
|
536
536
|
|
|
537
537
|
- GitHub Issues: [https://github.com/liveforownhappiness/test-gen-js/issues](https://github.com/liveforownhappiness/test-gen-js/issues)
|
|
538
538
|
- npm: [https://www.npmjs.com/package/test-gen-js](https://www.npmjs.com/package/test-gen-js)
|
package/package.json
CHANGED