diff --git a/src/generated/google/protobuf/timestamp.ts b/src/generated/google/protobuf/timestamp.ts index a43561c..c648801 100644 --- a/src/generated/google/protobuf/timestamp.ts +++ b/src/generated/google/protobuf/timestamp.ts @@ -1,4 +1,4 @@ -/* @ts-nocheck */ +// @ts-nocheck /* eslint-disable */ // @generated by protobuf-ts 2.8.2 with parameter generate_dependencies,long_type_string,eslint_disable,client_generic // @generated from protobuf file "google/protobuf/timestamp.proto" (package "google.protobuf", syntax proto3) diff --git a/src/utils.spec.ts b/src/utils.spec.ts index 5f0b38a..69f8b13 100644 --- a/src/utils.spec.ts +++ b/src/utils.spec.ts @@ -1,3 +1,5 @@ +// @ts-nocheck + import assert from 'node:assert'; import { describe, it } from 'node:test'; import { formatDate, getIpfsHash } from './utils'; @@ -16,7 +18,7 @@ describe('substreams', () => { * Expect a promise to throw an error with a specific message. * @param promise - The promise to await. * @param {string} errorMsg - The error message that we expect to see. - */ +*/ const expectToThrow = async (promise: Promise, errorMsg: string) => { try { await promise