@dolittle/sdk.artifacts
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
15 lines (9 loc) • 474 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { describeThis } from '@dolittle/typescript.testing';
import { an_empty_map } from '../given/an_empty_map';
describeThis(__filename, () => {
const map = an_empty_map();
const results = Array.from(map[Symbol.iterator]());
it('should not have returned any entries', () => results.should.be.empty);
});