Skip to content

Commit

Permalink
test: 3.0.0 initial tests (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pakisan authored Sep 13, 2024
1 parent e1ce250 commit 93a58d5
Show file tree
Hide file tree
Showing 96 changed files with 7,825 additions and 388 deletions.
1 change: 0 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
env:
node: true
es6: true
mocha: true
browser: true

plugins:
Expand Down
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sonar.exclusions=tools/**/*
sonar.exclusions=tools/**/*,test/**/*
2 changes: 1 addition & 1 deletion definitions/3.0.0/Reference.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/3.0.0/Reference.json"
}
}
4 changes: 2 additions & 2 deletions definitions/3.0.0/info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"description": "The object provides metadata about the API. The metadata can be used by the clients if needed.",
"allOf": [
{
{
"type": "object",
"required": ["version", "title"],
"additionalProperties": false,
Expand Down Expand Up @@ -70,4 +70,4 @@
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/3.0.0/info.json"
}
}
12 changes: 12 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"paths": {
"@extensions/*": ["./extensions/*"],
"@examples/*": ["./examples/*"],
"@definitions/*": ["./definitions/*"],
"@bindings/*": ["./bindings/*"],
"@common/*": ["./common/*"],
"@test/*": ["./test/*"]
}
}
}
Loading

0 comments on commit 93a58d5

Please sign in to comment.