Skip to content

Commit 177e874

Browse files
docs: update constructor description
1 parent 36106dd commit 177e874

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Simple `class` to support testing.
150150

151151
| Testing | Description |
152152
| :---------------------------------- | :---------- |
153-
| [constructor](#testing-constructor) | Creates an instance with setting allow globally for executing of the [`describe()`](#testingprototypedescribe) and [`it()`](#testingprototypeit) methods, and optionally sets the list of allowed executable tests (those that execute even on disallowed state) |
153+
| [constructor](#testing-constructor) | Creates an instance with setting for global allow executing of the [`describe()`](#testingprototypedescribe) and [`it()`](#testingprototypeit) methods, and optionally sets the list of allowed executable tests (those that execute even on the disallowed state) |
154154

155155
**Instance methods:**
156156

@@ -190,7 +190,7 @@ Simple `class` to support testing.
190190

191191
### `Testing` constructor
192192

193-
Creates an instance with setting allow globally for executing of the [`describe()`](#testingprototypedescribe) and [`it()`](#testingprototypeit) methods, and optionally sets the list of allowed executable tests (those that execute even on disallowed state)
193+
Creates an instance with setting for global allow executing of the [`describe()`](#testingprototypedescribe) and [`it()`](#testingprototypeit) methods, and optionally sets the list of allowed executable tests (those that execute even on the disallowed state).
194194

195195
```typescript
196196
const testing = new Testing(

src/lib/testing.class.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { ExecutableTests } from '../interface/executable-tests.interface';
1010
export class Testing extends TestingTests {
1111
/**
1212
* Simple `class` to support testing.
13-
* Creates an instance, sets allow globally for executing of the `describe()` and `it()` methods,
14-
* and optionally sets the list of executable tests (those that executes even on disallowed state).
13+
* Creates an instance with setting for global allow executing of the `describe()` and `it()` methods,
14+
* and optionally sets the list of allowed executable tests (those that execute even on the disallowed state).
1515
* @param allowDescribe Allow executing `describe()` methods.
1616
* @param allowIt Allow executing `it()` methods.
1717
* @param executable An optional `object` of executable storage for `describe()` and `it()` methods.

0 commit comments

Comments
 (0)