UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

45 lines (36 loc) 1.11 kB
require('../spec_helper') const fs = require(`${lib}/fs`) const makeUserPackageFile = require('../../scripts/build') const snapshot = require('../support/snapshot') const la = require('lazy-ass') const is = require('check-more-types') const R = require('ramda') const hasVersion = (json) => { return la(is.semver(json.version), 'cannot find version', json) } const hasAuthor = (json) => { return la(json.author === 'Brian Mann', 'wrong author name', json) } const changeVersion = R.assoc('version', 'x.y.z') describe('package.json build', () => { beforeEach(function () { // stub package.json in CLI // with a few test props // the rest should come from root package.json file sinon.stub(fs, 'readJsonAsync').resolves({ name: 'test', engines: 'test engines', }) sinon.stub(fs, 'outputJsonAsync').resolves() }) it('author name and version', () => { return makeUserPackageFile() .tap(hasAuthor) .tap(hasVersion) }) it('outputs expected properties', () => { return makeUserPackageFile() .then(changeVersion) .then(snapshot) }) })