I am creating an integration test, and my component accepts a application-defined object, of which the class definition is stored in a file called my-object.js.
Perhaps I am completely missing it, but I cannot seem to write an import statement at the top of my integration test that allows me to create instances of my-object.
I’ve tried relative paths:
import MyObject from '../../../../app/custom-objects/my-object';