fix: new record type tests #36

Closed
0xmuralik wants to merge 9 commits from murali/record-types into main
Showing only changes of commit 0f6a17527b - Show all commits

View File

@ -172,7 +172,11 @@ export class Record {
};
break;
default:
default: {
const err = new Error("Unsupported reocrd type");
console.error(err);
throw err;
};
}
return a
}