Testing Orb with BATS

Hi, I am writing an orb for the first time and is using BATS to test my script. Tests ran successfully in my local but is failing in CircleCI. I am using BATS plugins and CI can’t load these libraries as it doesn’t exist based on the error message. Can you help me what’s wrong with my setup?

I have this at the top of may .bats file

#!/usr/bin/env bats

load ‘libs/bats-support/load’
load ‘libs/bats-assert/load’

I assume these libraries are committed to your GitHub repository? It might be worth double checking the working directory from which the tests are run. Is this project open source at all?