Skip to content

Commit 6103de9

Browse files
committedMar 5, 2022
update README and deprecate CHANGELOG
1 parent d69b8a6 commit 6103de9

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.0.0] - 2022-03-05
4+
5+
- CONSIDER THIS FILE DEPRECATED. MOVING TO GITHUB RELEASES.
6+
37
## [0.5.1] - 2019-12-06
48

59
- fix typing for combine() and 'required keys'

‎README.md

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# factory.ts
22

3+
[![willryan](https://circleci.com/gh/willryan/factory.ts.svg?style=svg)](https://app.circleci.com/pipelines/github/willryan/factory.ts)
4+
35
A library to ease creation of factories for test data for Typescript
46

57
Given an interface or type definition, create a factory for generating test data. Values for each key may be defaulted or be calculated each time based on a sequence number and the values for other keys.
68

7-
Version 0.3.2 introduces a new set of async factory methods for cases where asynchronicity is required to generate values. See sync.spec.ts for examples.
8-
9-
Version 0.3.3 introduces a pipeline mechanism for building up a key-value set of data. See pipeline.spec.ts for an example.
10-
119
## Installation
1210

1311
Install using yarn:
@@ -42,11 +40,11 @@ interface Person {
4240
import * as Factory from "factory.ts";
4341

4442
const personFactory = Factory.Sync.makeFactory<Person>({
45-
id: Factory.each(i => i),
43+
id: Factory.each((i) => i),
4644
firstName: "Bob",
4745
lastName: "Smith",
4846
fullName: "Robert J. Smith, Jr.",
49-
age: Factory.each(i => 20 + (i % 10))
47+
age: Factory.each((i) => 20 + (i % 10)),
5048
});
5149
```
5250

@@ -57,7 +55,7 @@ You can call `personFactory.build` with a subset of field data (`Partial<Person>
5755
```typescript
5856
const james = personFactory.build({
5957
firstName: "James",
60-
fullName: "James Smith"
58+
fullName: "James Smith",
6159
});
6260
// { id: 1, firstName: 'James', lastName: 'Smith', fullName: 'James Smith', age: 21 };
6361

@@ -89,7 +87,7 @@ Occasionally you may want to extend an existing factory with some changes. For e
8987

9088
```typescript
9189
const anyAgeFactory = personFactory.extend({
92-
age: Factory.each(() => randomAge(0, 100)) // randomAge(min:number, max:number) => number
90+
age: Factory.each(() => randomAge(0, 100)), // randomAge(min:number, max:number) => number
9391
});
9492

9593
anyAgeFactory.build(); // { id: 1, ..., age: <random value> };
@@ -110,7 +108,7 @@ const autoFullNameFactory = personFactory.withDerivation2(
110108

111109
const jamesBond = autoFullNameFactory.build({
112110
firstName: "James",
113-
lastName: "Bond"
111+
lastName: "Bond",
114112
});
115113
// { id: 1, firstName: 'James', lastName: 'Bond', fullName: 'Bond, James Bond', age: 21 };
116114
```
@@ -124,7 +122,7 @@ Alternatively, if you need to read more than 5 properties, or just don't want to
124122
```typescript
125123
const autoFullNameFactory = personFactory.withDerivation(
126124
"fullName",
127-
person => `${person.lName}, ${person.fName} ${person.lName}`
125+
(person) => `${person.lName}, ${person.fName} ${person.lName}`
128126
);
129127
```
130128

@@ -141,10 +139,10 @@ Sometimes you have two factories you want to combine into one. So essentially yo
141139
```typescript
142140
const timeStamps = Sync.makeFactory({
143141
createdAt: Sync.each(() => new Date()),
144-
updatedAt: Sync.each(() => new Date())
142+
updatedAt: Sync.each(() => new Date()),
145143
});
146144
const softDelete = Sync.makeFactory({
147-
isDeleted: false
145+
isDeleted: false,
148146
});
149147
interface Post {
150148
content: string;
@@ -153,7 +151,7 @@ interface Post {
153151
isDeleted: boolean;
154152
}
155153
const postFactory: Sync.Factory<Post> = makeFactory({
156-
content: "lorem ipsum"
154+
content: "lorem ipsum",
157155
})
158156
.combine(timeStamps)
159157
.combine(softDelete);
@@ -179,11 +177,11 @@ interface Person {
179177

180178
const personFactory = Factory.Sync.makeFactoryWithRequired<Person, "parent_id">(
181179
{
182-
id: Factory.each(i => i),
180+
id: Factory.each((i) => i),
183181
firstName: "Bob",
184182
lastName: "Smith",
185183
fullName: "Robert J. Smith, Jr.",
186-
age: Factory.each(i => 20 + (i % 10))
184+
age: Factory.each((i) => 20 + (i % 10)),
187185
}
188186
);
189187

0 commit comments

Comments
 (0)
Please sign in to comment.