Skip to content

Latest commit

 

History

History
1846 lines (822 loc) · 62.2 KB

CHANGELOG.md

File metadata and controls

1846 lines (822 loc) · 62.2 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

18.0.2 (2024-04-30)

Bug Fixes

  • 🏷️ Use generic return type for all jest matchers (#655) (f322a65)

18.0.1 (2024-03-21)

Bug Fixes

  • spectator: set input accepts alias names (#652) (13c8bf1)

18.0.0 (2024-03-21)

⚠ BREAKING CHANGES

  • using Angular types not available in versions lower than 17.3.0

Features

  • 🎸 fix input/output type inference (#651) (8cacdda)

Bug Fixes

  • 🐛 component re-render when updating fields in lifecycle hook (#646) (e522c99)

17.1.0 (2024-03-04)

Features

  • spectator: support defer block behavior (#641) (030ad64)

17.0.0 (2024-02-17)

⚠ BREAKING CHANGES

  • spectator: remove 'props' and 'setProps' from host/directive factories

  • fix: infer input signals when setting inputs on createComponent

  • test: align signal input test between jasmine/jest

  • refactor: rename input signal types to be aligned

Fixed type names of InferSignalInputs and InputSignalInput (which was a typo) to be aligned with Angular's InputSignal type, rather than SignalInput

  • refactor: remove unnecessary generic params from factories

  • fix: setprops behaviour for pipe factory

  • docs: update documentation to reflect api Changes

Added disclaimers for createHostFactory, createDirectiveFactory, and createPipeFactory as they don't support props/setProps anymore.

Features

16.0.0 (2023-12-16)

⚠ BREAKING CHANGES

  • 🧨 The library now requires a minimum version of Angular 17.0.0

Features

Bug Fixes

15.0.1 (2023-06-09)

Bug Fixes

15.0.0 (2023-05-21)

⚠ BREAKING CHANGES

  • 🧨 The library now required a min version of Angular 16.0.0
  • npx ng update @angular/core@16 @angular/cli@16 @angular/cdk@16 @angular-eslint/schematics@16 --force
  • update [email protected]
  • remove postinstall ngcc
  • fix: 🐛 removed Angular entryComponents type

fix: 🐛 doesServiceImplementsOnDestroy type Type 'S' is not assignable to type 'object'.ts(2322) types.ts(33, 48): This type parameter might need an extends object constraint.

fix: 🐛 yarn.lock conflicts in @types/node and caniuse-lite

  • 🧨 entryComponents is removed

  • 🧨 The library now required a min version of Angular 16.0.0

  • refactor: 💡 remove outdated eslint rule exceptions

Definition for rule '@typescript-eslint/no-empty-interface' was not found @typescript-eslint/no-empty-interface

Definition for rule '@typescript-eslint/no-shadow' was not found @typescript-eslint/no-shadow

Definition for rule '@typescript-eslint/consistent-type-assertions' was not found @typescript-eslint/consistent-type-assertions

Features

14.0.0 (2023-01-16)

⚠ BREAKING CHANGES

  • 🧨 Angular 15.1
  • 🧨 The library now required a min version of Angular 15.1.0

(cherry picked from commit 9bf4f928181b65ab2134e6604f3e8d5bf868499b)

Co-authored-by: Christo Zietsman [email protected]

Features

13.0.0 (2022-12-21)

⚠ BREAKING CHANGES

  • 🧨 Angular 15

  • 🧨 The library now required a min version of Angular 15.0.3

  • feat: update karma test runner config for ng 15

  • update @angular-builders/jest to 15

  • update devkit karma settings to follow ng15 standards

  • run 14 to 15 migration for cli

  • add test file inclusion to angular.json

  • remove webpack code from test.ts

Co-authored-by: Mark Bruning [email protected]

Features

12.2.1 (2022-12-06)

Bug Fixes

  • #592: create routing factory issue overriding standalone components, directives or pipes (#593) (80f9624), closes #592

12.2.0 (2022-11-20)

Features

  • matchers: add toHaveExactTrimmedText matcher (#588) (bb5b843)

12.1.1 (2022-11-13)

12.1.0 (2022-11-13)

Features

  • query: allow to specify parent selector option (#590) (d2fcdf8)

Bug Fixes

12.0.1 (2022-10-30)

12.0.0 (2022-10-30)

⚠ BREAKING CHANGES

  • 🧨 The library now required a min version of Angular 14.2.0

Features

  • 🎸 change peer dep to 14.2.0 (ffad43b)

11.4.1 (2022-10-30)

11.4.0 (2022-10-30)

Features

  • components: allow to override standalone components (#584) (464c807)

11.3.0 (2022-10-19)

Features

  • allow erroring on unknown elements/properties (#586) (cc8bb94)

11.2.1 (2022-09-30)

Bug Fixes

  • matchers: prevent crash on elements in a Shadow DOM (#585) (9d2996b)

11.2.0 (2022-09-23)

Features

  • dom-spectator: add query with root opt for Type selector (#580) (b5a0f35)
  • matchers: add toBeIndeterminate matcher (#577) (b158a27)

11.1.3 (2022-07-26)

Bug Fixes

  • 🐛 revert jquery patch (d66a8bc), closes #572
  • unpatch setTimeout before importing jQuery so it is not captured by zone.js (#573) (6cd5a1b)

11.1.2 (2022-07-25)

Bug Fixes

11.1.1 (2022-07-24)

Bug Fixes

  • unpatch setTimeout before importing jQuery so it is not captured by zone.js (#571) (76572b1)

11.1.0 (2022-06-26)

Features

11.0.2 (2022-06-23)

Bug Fixes

11.0.1 (2022-06-17)

Bug Fixes

11.0.0 (2022-06-07)

⚠ BREAKING CHANGES

  • Angular 14

Peer dependency is Angualr 14

Features

10.0.1 (2022-03-24)

Bug Fixes

  • 🐛 setInput should run host dc (c40a2a6), closes #539
  • matchers: test css variables via getPropertyValue (#530) (94ebfe3)

10.0.0 (2021-12-23)

⚠ BREAKING CHANGES

  • startup error: This change will result in a compile error for any MatcherFunction that uses HTMLElement properties or functions.

MatcherFunction in @testing-library/dom now receives a parameter of type Element, where it previously was HTMLElement - so users will have to test/cast to HTMLElement if they need HTMLElement properties or methods in their matcher function.

Bug Fixes

  • startup error: update @testing-library/dom to update pretty-format (#522) (647ef89)

9.0.0 (2021-11-20)

⚠ BREAKING CHANGES

  • 🧨 The library now requires Angular v13

Features

  • 🎸 upgrade to angular v13 (1644abb)

Bug Fixes

8.3.2 (2021-11-16)

Bug Fixes

8.3.1 (2021-10-27)

Bug Fixes

  • allow passing any values to the Route#data (#504) (0eb9bbc)

8.3.0 (2021-10-26)

Features

  • allow overriding global teardown options (#502) (e25b5eb)

Bug Fixes

  • matchers: toHaveStyle matcher throws TypeError error (#503) (a80211a)

8.2.0 (2021-10-25)

Features

  • allow providing ModuleTeardownOptions (#499) (81edca6)

Bug Fixes

  • CustomMatcherResult message property should be function (#500) (44ae8c2)

8.1.0 (2021-09-29)

Features

  • Router: Import RouterTestingModule when stubs are enabled (#488) (5308c26)

8.0.4 (2021-08-28)

Bug Fixes

  • 🐛 add router and animations as peer deps (a4dce33), closes #478

8.0.3 (2021-08-10)

8.0.2 (2021-08-04)

8.0.1 (2021-07-16)

Bug Fixes

  • 🐛 use an accurate type in matchers (83755e4), closes #382

8.0.0 (2021-07-16)

⚠ BREAKING CHANGES

  • 🧨 upgrade to v12

Features

7.2.0 (2021-06-10)

7.1.0 (2021-03-07)

Features

  • schematics: use actual component name in test file (#409) (eb1698f)
  • add VSCode snippets for jest (#407) (eab68bb)

7.0.1 (2021-03-05)

Bug Fixes

7.0.0 (2021-01-28)

⚠ BREAKING CHANGES

  • 🧨 Schematics support for ng11

Features

6.1.4 (2021-01-28)

6.1.3 (2021-01-13)

Bug Fixes

  • selectors: forgot to expose byrole selector (#376) (9887bdb)

6.1.2 (2020-12-02)

Bug Fixes

  • schematics: respect the skipTests option (#370) (c9ff534)

6.1.1 (2020-11-13)

6.1.0 (2020-11-05)

Features

6.0.0 (2020-10-09)

Features

BREAKING CHANGES

  • see the breaking changes file

5.14.0 (2020-10-09)

Features

5.13.4 (2020-10-01)

Bug Fixes

  • component-host: setting for wrong variable (#352) (975c1d2)

5.13.3 (2020-09-04)

Bug Fixes

  • change accessor to property in ActivatedRouteStub (#346) (4bdd0ce)

5.13.2 (2020-09-02)

5.13.1 (2020-08-31)

Bug Fixes

  • routing: fix 'Navigation triggered outside Angular Zone' warning (#334) (d186172)

5.13.0 (2020-08-01)

Features

  • routing: add support for ActivatedRoute url property (#326) (d74e534)
  • routing: add support for router tree state mocking (#331) (dfd8317), closes #328

5.12.0 (2020-07-12)

Features

  • routing: add support for ActivatedRoute url property (#326) (d74e534)

5.11.0 (2020-06-24)

Features

5.10.0 (2020-06-23)

Features

  • downlevel .d.ts for older TS versions (#320) (acb0eca)

5.9.1 (2020-06-21)

Bug Fixes

5.9.0 (2020-05-27)

Features

5.8.0 (2020-05-24)

Features

5.7.1 (2020-05-14)

Bug Fixes

5.7.0 (2020-05-14)

Bug Fixes

  • update jquery to 3.5.0 to mitigate xss attack (#300) (26517a4)
  • schematics: get rid of schematics-utilities (#297) (f702629)

Features

5.6.1 (2020-04-21)

5.6.0 (2020-04-21)

Features

  • add key & keyCode parameter for keyboard events (#296) (fcdb6a8)

5.5.0 (2020-04-18)

Features

  • dom-selectors: add byTextContent query (#295) (159644f)

5.4.0 (2020-04-17)

Features

  • dom-selectors: add selector option to byText query (#294) (a00139a)

5.3.1 (2020-03-05)

Bug Fixes

  • rgb-to-hex: fix trim function to handle falsy value(#270) (#287) (9269832)

5.3.0 (2020-03-05)

Features

5.2.1 (2020-03-02)

5.2.0 (2020-03-01)

Features

5.1.0 (2020-02-26)

Bug Fixes

  • matchers: 🐛 add toHaveSelectedOptions matcher for jest (#271) (a260377)
  • schematics service for jest (#276) (0f970c3)
  • mathers: fix passing toHaveStyle if styles applied in attr… (#274) (f1ec6e7)

Features

  • dom-spectator: add elem query with root opt for DOMSelecto… (#277) (7409082)

5.0.0 (2020-02-18)

Bug Fixes

  • schematics: handle the path provided with the name (#257) (c0d482a), closes #256

Features

  • 🎸 upgrade to ng v9 (5ec7a90)
  • support for overriding mocking component view providers (#266) (23b78da)
  • upgrading to angular v9 (#267) (e13c955)

BREAKING CHANGES

  • Angular 9 is a peer deps now

  • This PR sets the angular peer dependencies to v9

  • feat: adding inject method to spectator

  • This method taps into the type safe TestBed.inject function.
  • Marked Spectator.get() as deprecated.
  • refactor: updating function signature of inject

  • refactor: updating Token type and using with inject

  • refactor: updating injectionType with actual declaration

4.11.2 (2020-01-09)

Bug Fixes

  • schematics: test should pass (6e97635)

4.11.1 (2020-01-08)

4.11.0 (2020-01-08)

Bug Fixes

Features

4.10.1 (2020-01-03)

Bug Fixes

4.10.0 (2019-12-12)

Bug Fixes

Features

4.9.0 (2019-12-05)

Features

4.8.1 (2019-12-04)

Bug Fixes

  • 🐛 revert service schematics (8d7c59d), closes #242

4.8.0 (2019-12-03)

Features

  • spectator: added directiveProviders to spectator-directive… (#240) (fd7ce10)

4.7.0 (2019-11-29)

Bug Fixes

  • spectator: fix for incorrect type definition on queryHostAll (#230) (#237) (e936af7)

Features

4.6.0 (2019-11-19)

Features

  • selectOption accepts HTMLOptionElements (#229) (f41966e)

4.5.2 (2019-11-07)

Bug Fixes

  • 🐛 add jasmine to deps (7b87583)
  • 🐛 revert jasmine types package (b67341c)

4.5.1 (2019-11-06)

Bug Fixes

  • 🐛 add jasmine to deps (7b87583)

4.5.0 (2019-10-21)

Features

4.4.2 (2019-10-16)

Bug Fixes

  • jest/lib: template mutation with createSpyObject (#209) (e23af88)
  • schematics: respect component path provided with the name (#199) (ed2fc48), closes #195

4.4.1 (2019-10-10)

Bug Fixes

  • fix for incorrect type inference on TS 3.3 and TS 3.5+ (#205) (61370dd)

4.4.0 (2019-10-06)

Features

4.3.4 (2019-10-02)

Bug Fixes

  • support for textareas in typeInElement (802270e)

4.3.3 (2019-10-02)

4.3.2 (2019-09-24)

Bug Fixes

  • mock: fix typings error on TS 3.5 (26fc6ba)

4.3.1 (2019-09-24)

Bug Fixes

  • mock: make SpyObject properties writable by default (3d0931f)

4.3.0 (2019-09-20)

Features

  • routing: add option to disable stubs and use RouterTestingModule (#188) (2fb7390)

4.2.3 (2019-09-17)

Bug Fixes

  • spectator: fix incorrect method typing (#187) (a405438)

4.2.2 (2019-09-10)

Bug Fixes

  • 🐛 refactor entry components for ivy (06d2c11)

4.2.1 (2019-09-09)

Bug Fixes

  • spectator: fix incorrect element typing (#185) (9c1dae4)

4.2.0 (2019-09-05)

Bug Fixes

  • support structural directive in host/directive (#178) (216f1c8)

Features

  • 🎸 mouse (0303844)
  • overrides: improve type inference for host props overrides (#178) (216f1c8)

4.1.0 (2019-09-04)

Features

4.0.2 (2019-09-03)

Bug Fixes

  • http: rename data service option to service (#172) (7fdc41c)

4.0.1 (2019-09-01)

Bug Fixes

  • mocks: readd deprecated mocks (a358f13)
  • vscode-snippets: change snippet language (#169) (08cac5f)

4.0.0 (2019-08-26)

Bug Fixes

  • expose event helpers (994bd7e)
  • directive: fix missing directive instance (6e58ce1)
  • fix query regression and unit testing improvements (75f5512)
  • fix typing for queryAll (954f31b)
  • host: make host fixture visible again (9d98f25)
  • http: backwards support for destructuring SpectatorHttp (d9bd304)
  • lib: export global injections (897d1c8)
  • lib: remove ng add schematic in favour of npm/yarn install (372f848)
  • mock: allow assigning read-only properties (1542c24)
  • schematics: update schematics for v4 API changes (4175b30)
  • spectator: fix for querying directives (cdd3fd7)
  • tests: support entry components (51b5481)

Code Refactoring

Features

  • lib: v4 changes (50a599f)
  • lib: v4 changes (aaeb7f9)
  • add factory for SpectatorForDirective (#157) (4d075da)
  • service: call OnDestroy lifecycle on service after each test (899d79f)
  • add migration CLI script (238cff5)
  • add routing support (#151) (aacfb25)
  • add support for overrides (f45824c)
  • deprecate createService in favour of createServiceFactory (3a70424)
  • support for Angular 8 and Jasmine 3 (#152) (f84e73e)
  • support for mocking component providers (6c9fa9e)

BREAKING CHANGES

For the full list of breaking changes in 4.0.0, please see MIGRATION.md.

3.12.0 (2019-08-15)

Bug Fixes

  • mock: fix regression caused by mocked properties (#154) (0bfc287)

Features

  • spectator: use spectator element as default selector (#155) (6b05f76)

3.11.1 (2019-08-08)

Bug Fixes

  • fix query regression and unit testing improvements (#148) (3503bee), closes #146

3.11.0 (2019-08-06)

Features

3.10.0 (2019-08-04)

Bug Fixes

  • matchers: element is hidden if it is falsy (#127) (05ba520)
  • matchers: pass input to isHidden through jQuery (fixes #122) (38b64f0)
  • enforce usage of jest type definitions (453928c)
  • spectator: improve type inference even more (877013b)
  • spectator: improve type inference for Spectator (1c3f23a)
  • remove circular dependency (d499778)
  • update jest due test execution error (3fc7326)

Features

  • mock: writable properties for SpyObjects (977059a)

3.9.2 (2019-06-21)

Bug Fixes

  • http: add missing methods (b608473)
  • matchers: visibility matchers work with Jest (fd7c947)

3.9.1 (2019-05-22)

Bug Fixes

  • global-injections: allow override injections (e1eaa5d)

Features

  • lib: add define global injections function (5456230)

3.9.0 (2019-05-15)

Bug Fixes

3.8.2 (2019-05-15)

Bug Fixes

3.8.0 (2019-05-13)

Bug Fixes

  • event-objects: add missing code (9edad7d)

Features

  • service: allow passing entrycomponents (361188f)

3.7.1 (2019-05-07)

Bug Fixes

  • mouse-events: should bubble and add button option (cbeea0d), closes #105
  • type-in-element: should bubble by default (496a91f), closes #104

3.6.1 (2019-03-31)

Bug Fixes

  • config: map schemas option to initial module config (897c850)
  • jest: fix for incorrect typing of SpyObject for Jest (1cc0a36)
  • lib: avoid mockProvider to modify its inputs (32bac7d)
  • lib: create failing test for mockProvider leaking (eed379a)

Features

  • jest: imporove spy types (f23de82)
  • lib: add failing test for method mocking (36fec41)
  • lib: create test which fails when query doesn't find an element (d3b3833)
  • lib: handle not found elemenet by.directive (2d32510)
  • lib: mockProvider allows mocking methods using 2nd argument (fd2547c)
  • spectator: mark toHaveAttribute second parameter as optional (fc07596)

3.5.0 (2019-03-10)

Bug Fixes

  • jest: expose dom selectors (9c32bbc), closes #62
  • jest: fix type collisions between jasmine/jest (e7b6a44)
  • lib: revert pr (8c00cde)

Features

  • config: add declareComponent option (ccbf8ea)
  • internal: use host debug element when debug element is missing (882950b)
  • internal: use host debug element when debug element is missing (820c380)
  • lib: add ng-add support (064d452)
  • schematics: create ng add schematics (6d74f4f), closes #53
  • avoid spec has no expectations when using expectOne (8b74d46)

3.1.0 (2018-12-17)

Bug Fixes

  • host: componentProviders should act on the component (ef84b16)
  • host: componentProviders should not be overwritten always (793e6e0)
  • jest: add missing export (a1a210b)
  • jest: fix build (7f058b3)
  • jest: fixes after review comments (2b7d2a5)
  • service: loosen SpectatorService.get interface typing (6ab678b)
  • service: loosen type restrictions on SpectatorService.get (b1adb37)
  • service: merge options imports into module imports when creating a service TestBed (70c9c1f)
  • types: add types to matchers definitions (9de13d1)

Features

  • lib: disable change detection on a test level (1df9d7f)
  • mock: allow to pass template with properties for mocks (c2a3548)
  • mock: create failing tests for mocks with properties (f2a3fee)
  • mock: support for Jest mocking (45f0677)

1.13.1 (2018-07-13)

1.13.0 (2018-07-06)

Features

  • mock-component: add identifier option for easier query (cd32554), closes #34

1.12.1 (2018-07-05)

Bug Fixes

  • query: correct return type for queryAll (a5c86d5)

1.12.0 (2018-06-27)

Features

  • query: add dom-testing-library query tools (82a42e2)

1.11.1 (2018-06-26)

Bug Fixes

  • host: don't override component inputs (814e0b0)

1.8.1 (2018-06-26)

Bug Fixes

  • dev: add missing jQuery dependency (11e4234)
  • dev: remove node_modules (e42443d)
  • host: don't override input changes (054a3c2), closes #31

Features

  • mock-component: content projection for default MockComponent (7c3ba52)

1.11.0 (2018-06-20)

Features

  • directive: add MockDirective helper function (842f0a7)

1.10.0 (2018-06-16)

Features

  • changelog: update (30ed3da)
  • matchers: add toHaveProperty and toHaveAttribute matchers (303ae6d), closes #21

1.9.1 (2018-06-01)

Bug Fixes

  • query: query now can accept a generic to define the return value (acd3b4a)

1.9.0 (2018-05-28)

Features

  • directive: add getDirectiveInstance to host (9b2ffc6)

1.8.0 (2018-05-27)

Features

  • providers: add component providers option (832c770)

1.7.3 (2018-05-24)

Bug Fixes

  • types: add spyobject type to get method (87b5c5b)

1.7.2 (2018-05-22)

Bug Fixes

1.7.1 (2018-05-22)

Bug Fixes

  • host: add change detection component on init (d22e53d)

1.7.0 (2018-05-22)

Features

  • mocks: add mock component function (ce20d26)

1.6.1 (2018-05-21)

Features

  • spectator: entry component and query selector (8397295)

1.5.5 (2018-05-21)

Bug Fixes

  • internal: revert to angular selector (81f5308)

Features

  • upgrade: upgrade to latest versions of angular and rxjs (8fff888)

BREAKING CHANGES

  • upgrade: the library depends on latest version of angular and rxjs

1.5.4 (2018-05-18)

Bug Fixes

  • query: prefer native js over angular api (e0fe656)

1.5.3 (2018-05-15)

Bug Fixes

  • host: remove default object value (cadb8c3)

1.5.2 (2018-05-14)

Bug Fixes

  • detectchanges: run detect changes on the component instead host (77c77a1)

1.6.0 (2018-05-14)

Bug Fixes

  • setinput: run component detect changes instead host (0bb73d4)

1.5.0 (2018-05-13)

Features

  • host: add setHostInput method (749dfb8)

1.4.4 (2018-04-30)

Bug Fixes

  • changelog: update (798824a)
  • host: add support for structural directives (341afe2)

1.4.3 (2018-04-23)

Bug Fixes

  • build: downgrade to es5 (0eee88c)

1.4.2 (2018-04-22)

Bug Fixes

  • docs: update changelog (8f75440)
  • mock: change arrow function (9d6e28d)

1.4.1 (2018-04-17)

Bug Fixes

  • http: remove const enum (cf90619)

1.4.0 (2018-04-17)

Features

  • http: expose get method for getting the service (400c082)

1.3.4 (2018-04-14)

Bug Fixes

  • events: add document and window types (25130cd)

1.3.3 (2018-04-13)

Bug Fixes

1.3.2 (2018-04-13)

1.3.1 (2018-04-13)

Bug Fixes

  • build: dont publish src (4d14b48)

1.3.0 (2018-04-13)

Features

  • query: add free style jquery support (25ddf9d)
  • query: add query last alias (7887d6c)

1.2.3 (2018-04-13)

Bug Fixes

  • query: support elementref (3ab3647)

1.2.2 (2018-04-13)

Bug Fixes

  • query: fix internal generic (2b2406c)

1.2.1 (2018-04-13)

Bug Fixes

  • query: query now returns the right generic (2e69a09)

1.2.0 (2018-04-11)

Features

  • components: add support to pass mocks providers (0c58d06)

1.1.1 (2018-04-10)

1.1.0 (2018-04-10)

Features

  • events: add new helpers method (7665d08)

1.0.1 (2018-04-10)

1.0.0 (2018-04-07)

Features

  • query: query and queryall now supports more options (a309f3c)

BREAKING CHANGES

  • query: 1. ByDirective no longer exists - use query/all

0.5.2 (2018-04-05)

Bug Fixes

  • host: remove unused import (e0e7f28)

0.5.1 (2018-04-05)

Bug Fixes

  • entrycomponents: fix undefined bug (fe921c9)

0.5.0 (2018-04-05)

Features

  • components: add support for entry components (8ba6870), closes #6

0.4.2 (2018-04-05)

Bug Fixes

0.4.1 (2018-04-04)

Bug Fixes

  • spectator: fix queryall return type (8456943)

0.4.0 (2018-04-04)

Features

  • spectator: support for getting the debug element (5838954)

0.3.0 (2018-04-04)

Features

  • host: add the option to pass complex inputs (45de5e1), closes #5

0.2.2 (2018-04-04)

0.2.1 (2018-04-04)

0.2.0 (2018-04-03)

Features

  • internals.js: additional parameters for event emitting functions (2f562fb)
  • query: add the option to query by directive (9d54c42)

0.1.5 (2018-04-02)

Bug Fixes

  • click: add an option to pass native element and debug element (fafe43d)

0.1.4 (2018-04-02)

Bug Fixes

  • host: fix initial module undefined when using host (5c09555)

0.1.3 (2018-04-01)

Bug Fixes

  • host: mark host as optional (834b12f)

0.1.0 (2018-04-01)

Bug Fixes

Features

  • lib: initial commit (5043600)
  • lib: initial commit (6f1ba2d)
  • services: Testing services with and without a mock (dccdbbe)