diff --git a/docs/installation.md b/docs/installation.md index 5b954799ca3..40b091e7510 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -5,7 +5,7 @@ weight: 30 ## Node and npm -To use the AsyncAPI CLI tool, you must install NPM and Node.js version 10 or higher. To check if you already have both installed, run the following commands in your terminal: +To use the AsyncAPI CLI tool, you must install NPM and Node.js version 16 or higher. To check if you already have both installed, run the following commands in your terminal: ```sh # check if node is installed diff --git a/test/integration/bundle/feature.yaml b/test/integration/bundle/feature.yaml index 1a716520cc9..2288ad3b68b 100644 --- a/test/integration/bundle/feature.yaml +++ b/test/integration/bundle/feature.yaml @@ -3,8 +3,3 @@ info: title: Account Service version: 1.0.0 description: This service is in charge of processing user logouts -channels: - user/loggedOut: - unsubcribe: - message: - $ref: 'test/integration/bundle/messages.yaml#/messages/UserLoggedOut' diff --git a/test/integration/bundle/final-asyncapi.yaml b/test/integration/bundle/final-asyncapi.yaml index 9de32aa5d81..09e10392186 100644 --- a/test/integration/bundle/final-asyncapi.yaml +++ b/test/integration/bundle/final-asyncapi.yaml @@ -8,10 +8,6 @@ channels: subscribe: message: $ref: '#/components/messages/UserSignedUp' - user/loggedOut: - unsubcribe: - message: - $ref: '#/components/messages/UserLoggedOut' components: messages: UserSignedUp: diff --git a/test/integration/bundle/first-asyncapi.yaml b/test/integration/bundle/first-asyncapi.yaml index d41ed4a2fec..1b6b411c1d0 100644 --- a/test/integration/bundle/first-asyncapi.yaml +++ b/test/integration/bundle/first-asyncapi.yaml @@ -7,4 +7,4 @@ channels: user/signedup: subscribe: message: - $ref: "./test/integration/bundle/messages.yaml#/messages/UserSignedUp" \ No newline at end of file + $ref: "./messages.yaml#/messages/UserSignedUp" \ No newline at end of file diff --git a/test/integration/bundle/first-asyncapiv3.yaml b/test/integration/bundle/first-asyncapiv3.yaml index d49bb67334c..3b4c92e00c8 100644 --- a/test/integration/bundle/first-asyncapiv3.yaml +++ b/test/integration/bundle/first-asyncapiv3.yaml @@ -5,4 +5,4 @@ info: description: Example Service. channels: commentLikedChannel: - $ref: './test/integration/bundle/channels.yaml#/channels/commentLikedChannel' + $ref: './channels.yaml#/channels/commentLikedChannel'