Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7561751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:14:15+00:00 2026-05-30T13:14:15+00:00

In my Jasmine-Node spec_helper I have require(../app/test) and it pulls in that test file

  • 0

In my Jasmine-Node spec_helper I have require("../app/test") and it pulls in that test file just fine. But if I try require("../app/*"), I get Error: Cannot find module '../app/*'.

Is there a way to pull in all the files/sub-dirs of a directory like this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:14:16+00:00Added an answer on May 30, 2026 at 1:14 pm

    There are a few ways to accomplish what you want, the easiest probably being to create an index.js in your ./app directory. This index.js would in turn reference all the modules inside that directory, and export them:

    exports.foo = require("./foo");
    exports.bar = require("./bar");
    

    If you want to do it dynamically, you will have to write some code:

    var fs = require("fs");
    
    fs.readdir("./app", function(err, files) {
        if(err) console.error(err);
        for(var i = 0, len = files.length; i < len; i++) {
            require("./app/" + files[i]);
        }
    });
    

    For more info on how node loads modules, here’s the relevant docs and about folders as modules in particular.

    Unfortunately, Jed’s answer here is wrong.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom matcher in some Jasmine test specs of the form: this.addMatchers({
I have a rails 3.1 project that I'd like to run some jasmine specs
I have been using Jasmine to write BDD tests for a web app. I
I have a rails app that is combining javascript assets using Jammit , and
I am writing a mock for the node-redis module and using Jasmine to test
I'm using the Jasmine BDD Javascript library and really enjoying it. I have test
I have the following Jasmine context and assertion: it should return a javascript file,
I've just started using Jasmine so please forgive the newbie question but is it
I'm writing an app that's destined for the browser, and I want to write
I'm trying to get Jasmine (jasmine-headless-webkit), coffeescript and backbone to work together. I'm close

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.