We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7033d93 commit 61e7f95Copy full SHA for 61e7f95
1 file changed
test/unit/container_test.js
@@ -154,6 +154,16 @@ describe('Container', () => {
154
155
describe('#create', () => {
156
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
+
167
const config = {
168
helpers: {
169
MyHelper: {
0 commit comments