Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class FileSystemResolverPlugin extends Module<NoConfig> {
if (manifest) {
return { uri: null, manifest };
} else {
// Noting found
// Nothing found
return { uri: null, manifest: null };
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/js/validation/src/__tests__/manifests.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jest.setTimeout(200000);

const testWrappersPath = path.join(__dirname, "./wrappers");

describe("manfiests", () => {
describe("manifests", () => {
let validator: WasmPackageValidator;

beforeAll(async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/js/validation/src/__tests__/sizes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const assertValidWrapper = async (wrapperPath: string) => {
expect(result.failReason).toEqual(undefined);
};

describe("manfiests", () => {
describe("manifests", () => {
it("sanity", async () => {
await assertValidWrapper(
path.join(testWrappersPath, "wrapper-size-over-100-kb")
Expand Down