Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/a11ytester / src / __tests__ / config.spec.js
Size: Mime:
const config = require('../config');

describe('config', () => {
  describe('.get()', () => {
    it('reads the configuration from the package.json', () => {
      const configObject = config.get();
      expect(configObject.reportsPath).toEqual('dist');
    });
  });
});