Search the Community
Showing results for tags 'jasmine'.
-
Play It Now: https://cutedressup.com/game/princess-black-friday-collections/ Welcome to Princess Black Friday Collections. Princess Elsa, Anna, Jasmine, Snow White, Moana, and Ariel are ready for shopping! Is anything special, all the princesses are going together? Yes, It’s Black Friday. They are all excited like us for this day. Join and help the princesses with your skill. Have fun!
-
Play It Now: https://cutedressup.com/game/princess-love-pinky-outfits/ Welcome to Princess Love Pinky Outfits. Princess Anna, Elsa, Moana, Jasmine, Snow White, and Ariel met after a long time. They are Planned to throw a weekend party with their beloved theme called Pinky Outfits. Browse the wardrobe for each princess and pick cute pinky outfits. Join with girls and have fun!
-
- princess
- pinky outfits
- (and 9 more)
-
We use grunt templates and jasmine to run our test suite and since upgrading to v3 - our tests fail to run at all via grunt. I think it's down to the way v3 uses requireJs vs v2 and it doesn't seem to play well with our grunt template. The error I get is: Error: define: 'undefined' is not a function (evaluating 'this._loadResource.bind(this)')I'm thinking this might be because ./loaders doesn't get required properly? Did anyone face similar problems and have any solutions? For ref our grunt test template looks like: test: { src: ['src/**/*.js', '!src/main.js'], options: { display: "short", keepRunner: true, summary: true, specs: ['test/**/*Spec.js', '!test/grunt/*Spec.js'], template: require('grunt-template-jasmine-requirejs'), templateOptions: { requireConfig: { baseUrl: 'src', paths: { "test": "../test", "echo": ECHO_PATH } } }, '--local-to-remote-url-access': true } }