fix test descriptions
This commit is contained in:
@ -18,14 +18,14 @@ describe("Utility", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("#uniqueNumericId", () => {
|
describe("#uniqueNumericId", () => {
|
||||||
it("should generate a unique ID", () => {
|
it("should generate a unique incrementing ID", () => {
|
||||||
// tslint:disable-next-line: no-unused-expression
|
// tslint:disable-next-line: no-unused-expression
|
||||||
expect(uniqueNumericId()).to.not.be.undefined;
|
expect(uniqueNumericId()).to.not.be.undefined;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("#uniqueId", () => {
|
describe("#uniqueId", () => {
|
||||||
it("should call the underlying header's addChildElement", () => {
|
it("should generate a unique pseudorandom ID", () => {
|
||||||
// tslint:disable-next-line: no-unused-expression
|
// tslint:disable-next-line: no-unused-expression
|
||||||
expect(uniqueId()).to.not.be.empty;
|
expect(uniqueId()).to.not.be.empty;
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user