Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Error in generate-controller-interface when adding static method as first method in controller #59

Open
friendly-tech opened this issue Mar 5, 2019 · 1 comment

Comments

@friendly-tech
Copy link
Contributor

The problem

Adding a single static method as the first method in a controller, causes the following error

Error: Argument Error (order): Range is 0 to 24, but 25 was provided.

Details

I had some static methods in my class, when i ran linting in moved these to the top - i then got the error(s).
Interestingly if you add it as last method, or add another static method it goes away..

Code To Reproduce Issue

Added to the supplychain controller

@Controller('supplychainchaincode')
export class SupplychainchaincodeController extends ConvectorController {
  //Just add this
  private static test(){}

  @Create('Supplier')
  @Invokable()
  public async createSupplier() ....

Then run npm run test - there are no tests but shows the error.

@diestrin
Copy link
Contributor

Thanks for reporting, I'll investigate this

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants