Giter Club home page Giter Club logo

Comments (2)

kamok avatar kamok commented on August 31, 2024

So I've tackle this problem a bit, trying to use it with my NativeScript project. I've followed the instructions here: https://stackoverflow.com/questions/34499382/importing-javascript-library-into-nativescript

Requiring this in my factory definition:

const FactoryModule = require('rosie');
const Factory = new FactoryModule.Factory();

export default Factory.define('employer').sequence('id').attrs({
  name: 'Employer Name',
});

But when I run my specs, I still get Error: Could not find module 'rosie'

from rosie.

kamok avatar kamok commented on August 31, 2024

I was able to solve this problem. Here's how to load rosie into a NativeScript project powered by TypeScript.

  1. npm i rosie --save - not save dev!
  2. npm i @types/rosie --save - not save dev!
  3. In factory, require like this:
const FactoryModule = require('rosie');
const Factory = new FactoryModule.Factory();

export default Factory.sequence('id').attrs({
   name: 'Foo'
})
  1. In spec file, use like this:
import MyFactory from '~/tests/factories/my.factory';
MyFactory.build({ name: 'Bar' })

MyFactory can be anything and it should still work, no need to declare inside your factory file.

  1. You might need to add the following to your tsconfig
    "noImplicitAny": false,

That's it. Closing.

from rosie.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.