Skip to content

Commit

Permalink
style: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n committed Oct 12, 2023
1 parent 2b771c9 commit 6df5477
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions packages/apidom-ns-openapi-2/test/predicates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class InfoSubElement extends InfoElement {}

assert.isTrue(isInfoElement(new InfoSubElement()));
Expand Down Expand Up @@ -100,7 +99,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class LicenseSubElement extends LicenseElement {}

assert.isTrue(isLicenseElement(new LicenseSubElement()));
Expand Down Expand Up @@ -157,7 +155,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class ContactSubElement extends ContactElement {}

assert.isTrue(isContactElement(new ContactSubElement()));
Expand Down Expand Up @@ -214,7 +211,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class ExternalDocumentationSubElement extends ExternalDocumentationElement {}

assert.isTrue(isExternalDocumentationElement(new ExternalDocumentationSubElement()));
Expand Down Expand Up @@ -271,7 +267,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class ItemsSubElement extends ItemsElement {}

assert.isTrue(isItemsElement(new ItemsSubElement()));
Expand Down Expand Up @@ -328,7 +323,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class HeadersSubElement extends HeadersElement {}

assert.isTrue(isHeadersElement(new HeadersSubElement()));
Expand Down Expand Up @@ -385,7 +379,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class ExampleSubElement extends ExampleElement {}

assert.isTrue(isExampleElement(new ExampleSubElement()));
Expand Down Expand Up @@ -442,7 +435,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class HeaderSubElement extends HeaderElement {}

assert.isTrue(isHeaderElement(new HeaderSubElement()));
Expand Down Expand Up @@ -499,7 +491,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class TagSubElement extends TagElement {}

assert.isTrue(isTagElement(new TagSubElement()));
Expand Down Expand Up @@ -556,7 +547,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class XmlSubElement extends XmlElement {}

assert.isTrue(isXmlElement(new XmlSubElement()));
Expand Down Expand Up @@ -613,7 +603,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class SecurityDefinitionsSubElement extends SecurityDefinitionsElement {}

assert.isTrue(isSecurityDefinitionsElement(new SecurityDefinitionsSubElement()));
Expand Down Expand Up @@ -670,7 +659,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class SecuritySchemeSubElement extends SecuritySchemeElement {}

assert.isTrue(isSecuritySchemeElement(new SecuritySchemeSubElement()));
Expand Down Expand Up @@ -727,7 +715,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class ScopesSubElement extends ScopesElement {}

assert.isTrue(isScopesElement(new ScopesSubElement()));
Expand Down Expand Up @@ -784,7 +771,6 @@ describe('predicates', function () {

context('given subtype instance value', function () {
specify('should return true', function () {
// eslint-disable-next-line @typescript-eslint/naming-convention
class SecurityRequirementSubElement extends SecurityRequirementElement {}

assert.isTrue(isSecurityRequirementElement(new SecurityRequirementSubElement()));
Expand Down

0 comments on commit 6df5477

Please sign in to comment.