1

I have a class and a function in one file

export class MainClass{
....
}

export function test_function(){}

Previously, I just had the test_function exported and could easily test it using

 rewire('file.ts').__get__("test_function")

How can I access the class to test its functions? (Preferably not moving the class to another file)

Prateek Narendra
  • 1,837
  • 5
  • 38
  • 67

0 Answers0