DEV Community

Cover image for Testing Vue.js Application Files That Aren't Components
Raymond Camden
Raymond Camden

Posted on • Originally published at raymondcamden.com on

Testing Vue.js Application Files That Aren't Components

Ok, before I begin, a huge disclaimer. My confidence on this particular tip is hovering around 5% or so. Alright, so some context. I'm working on a game in Vue.js. Surprise surprise. It probably won't ever finish, but I'm having some fun building small parts of it here and there. The game is an RPG and one of the first things I built was a basic dice rolling utility.

In my Vue application, I created a utils folder and made a file dice.js. I used this setup because I wasn't building a component, but rather a utility that my Vue components could load and use. My dice utility takes strings like this - 2d6 - which translate to "roll a six sided die 2 times". It even supports 2d6+2 which means to "roll a six sided die 2 times and 2 to the final result". It's rather simple string parsing, but here's the entirety of it:

export const dice = {

    roll(style) {
        let bonus=0, total=0;
        if(style.indexOf('+') > -1) {
            [style, bonus] = style.split('+');
        } 

        let [rolls, sided] = style.split('d');

        //console.log(rolls, sided);
        for(let i=0;i<rolls;i++) {
            total += getRandomIntInclusive(1, sided);
        }
        total += parseInt(bonus);
        return total;
    }
}

function getRandomIntInclusive(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min; //The maximum is inclusive and the minimum is inclusive 
}

Enter fullscreen mode Exit fullscreen mode

In one of my Vue components, I use it like so:

import { dice } from '@/utils/dice';

export default {
    data() {
        return {
            newName:'gorf',
            str: '',
            dex: '',
            int: ''
        }
    }, 
    created() {
        this.reroll();
    },
    computed: {
        cantContinue() {
            return this.newName == ''
        }
    },
    methods: {
        reroll() {
            this.str = dice.roll('3d6');
            this.dex = dice.roll('3d6');
            this.int = dice.roll('3d6');
        },
        start() {
            this.$store.commit('player/setName', this.newName);
            this.$store.commit('player/setStats', { str: this.str, dex: this.dex, int: this.int });
            this.$router.replace('game');
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

I import the dice code and then can make calls to it for my UI. Nothing too crazy here, but I ran into an interesting issue today. My initial version of dice.js didn't support the "+X" syntax. I wanted to add it, but also wanted a quick way to test it.

So I could have simply gone into my Vue component and add some random tests to the created block, something like:

console.log(dice.roll('2d6+2'));

Enter fullscreen mode Exit fullscreen mode

And that would work, but as I developed, I'd have to wait for Vue to recompile and reload my page. In general that's pretty speedy, but what I really wanted to do was write a quick Node script and run some tests at the CLI. To be clear, not unit tests, just literally a bunch of console logs and such. That may be lame, but I thought it might be quick and simple.

However... it wasn't. If you look back at the source of dice.js, you'll see it's not using module.exports but just a regular export. This was my test:

import { dice } from '../src/utils/dice'

// just some random rolls
for(let i=1;i<4;i++) {
    for(let k=3;k<10;k++) {
        let arg = i+'d'+k;
        console.log('input = '+arg, dice.roll(arg));
    }
}

console.log(dice.roll('2d6+2'));

Enter fullscreen mode Exit fullscreen mode

And this was the result:

Error output from script

Ok, so an admission. I'm still a bit hazy on the whole module thing in Node, and JavaScript in general. I've used require, imports, exports, but I wouldn't pass a technical interview question on them. I hope you don't think less of me. Honestly.

That being said, the error kinda made sense, but I didn't want to use the .mjs extension because I didn't know if that would break what the Vue CLI does.

I was about to give up and was actually considering adding a route to my Vue application just for debugging.

Thankfully, StackOverflow came to the rescue. I found this solution which simply required me adding esm and then running my code like so: node -r esm testDice.js. It worked perfectly! And because my memory is crap, I added this to the top of the file:

/*
Ray, run with: node -r esm test.js
*/

Enter fullscreen mode Exit fullscreen mode

Yes, I write notes to myself in comments. You do too, right?

Anyway, I hope this helps others, and I'm more than willing to be "schooled" about how this could be done better. Just leave me a comment below!

Photo by Nancy Yang on Unsplash

Top comments (0)