Skip to content

Commit 61e7f95

Browse files
committed
debug
1 parent 7033d93 commit 61e7f95

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

test/unit/container_test.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,16 @@ describe('Container', () => {
154154

155155
describe('#create', () => {
156156
it('should create container with helpers', async () => {
157+
// --- ADD THIS DEBUGGING BLOCK ---
158+
const sandboxDir = path.resolve(__dirname, 'data/sandbox/data');
159+
console.log('--- CI DEBUGGING ---');
160+
console.log('Does directory exist?', fs.existsSync(sandboxDir));
161+
if (fs.existsSync(sandboxDir)) {
162+
console.log('Files inside directory:', fs.readdirSync(sandboxDir));
163+
}
164+
console.log('--------------------');
165+
// --------------------------------
166+
157167
const config = {
158168
helpers: {
159169
MyHelper: {

0 commit comments

Comments
 (0)