Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

Releases: hypoport/node-config-ngscenario-dsl

1.2.0

05 Sep 09:55
Compare
Choose a tag to compare
  • Added ability to verify requests based on certain matchers. Example:

    server().expectRequest({
      method: "POST",
      url: '/log',
      requestMatcher: {
        matcherType: 'property',
        properties: {
          level: 'ERROR'
        }
      }
    });
    

    This will apply a requestMatcher of type property to the request body. In other words, the request expectation will only match requests with JSON bodies containing all of the properties listed in the properties object of the matcher.

1.1

19 Aug 08:56
Compare
Choose a tag to compare
1.1

Fixed Issues:

[#3] renaming int-tests to examples

[#4] travis-ci build fix

1.0.4

26 Jul 14:30
Compare
Choose a tag to compare

Bugfixes

  • [#1] A silly little bug caused the request handlers to get shuffled around, when adding additional request routes