Created
October 25, 2018 00:25
-
-
Save godber/d8ec96d7315c4ddf7acdba53572e05be to your computer and use it in GitHub Desktop.
Teraslice Asset Version Check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const asset = require('../asset/asset'); | |
const pkg = require('../package.json'); | |
describe('asset version', () => { | |
it('should match package.json', () => { | |
expect(asset.version).toEqual(pkg.version); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment