Node Express Challenges Not Passing w/Valid Input

Hello! I’m trying to pass this test. I’ve tried using Glitch and Repl.it to submit answers to the challenges and it’s not passing the tests for different inputs.

Error:

// running tests package.json should have a valid “author” key
// tests completed

package.json should have a valid “author” key

^ Same error for description, keywords, etc

"name": "fcc-learn-npm-package-json",
  "description": "free code camp npm",
  "keywords": [ "npm", "freecodecamp", "node" ],
  "author": "Drew",
	"dependencies": {
		"express": "^4.14.0"
	},
  "license": "MIT",
	"main": "server.js",
  "version": "1.2.0",
	"scripts": {
		"start": "node server.js"
	},
	"engines": {
		"node": "8.11.2"
	},
	"repository": {
		"type": "git",
		"url": "https://idontknow/todo.git"
	}
}

Challenge: How to Use package.json, the Core of Any Node.js Project or npm Package

Any help would be appreciated! :slight_smile:

Welcome, drewch.

Are you aware of which URL to submit? (this catches a lot of campers)

For these projects, the Live App URL should be submitted, for the tests to work. In your case, that would be this:
https://drewch34-boilerplate-npm.glitch.me/

Otherwise, for Glitch, it went down (and still is in some areas) today: https://status.glitch.com/

Hope this helps

Ah, okay, thanks. Yeah, it must have been down for me because I got timeout errors for that link.