fix: update error on unsuppported plans

This commit is contained in:
DarkPhoenix2704
2025-12-04 07:08:00 +00:00
parent 7aac1bf84c
commit 0edea0f2b2

View File

@@ -348,8 +348,7 @@ export default function () {
// Validation
const error = listScripts.body;
expect(error).to.be.an('object');
expect(error).to.have.property('error', 'ERR_FORBIDDEN');
expect(error).to.have.property('message').that.includes('not sufficient');
expect(error).to.have.property('error', 'ERR_FEATURE_NOT_SUPPORTED');
});
});
}