Skip to content

Commit c3406d7

Browse files
chore(Testing): remove import and update constructor description
1 parent 5caa33b commit c3406d7

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/lib/testing.class.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
// @angular-package/type.
2-
import { is, typeOf } from '@angular-package/type';
31
// Class.
42
import { TestingDescribe } from './testing-describe.class';
53
import { TestingIt } from './testing-it.class';
64
import { TestingTests } from './testing-tests.class';
75
// Interface.
86
import { ExecutableTests } from '../interface/executable-tests.interface';
97
/**
10-
* Simple object to support the testing.
8+
* Simple `class` to support testing.
119
*/
1210
export class Testing extends TestingTests {
1311
/**
14-
* Simple object to support the testing.
15-
* Initialize testing object with providing allows for executing `describe()` and `it()` methods of an instance of `Testing`,
16-
* and optionally providing the storage of unique numbers of executable tests.
12+
* 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).
1715
* @param allowDescribe Allow executing `describe()` methods.
1816
* @param allowIt Allow executing `it()` methods.
1917
* @param executable An optional `object` of executable storage for `describe()` and `it()` methods.

0 commit comments

Comments
 (0)