We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d21082d commit 9d5e945Copy full SHA for 9d5e945
src/test/main.test.js
@@ -164,7 +164,17 @@ describe('angular-fullstack:app', function() {
164
});
165
166
167
- it('should run server tests successfully with generated snake-case endpoint'); //'foo-bar'
+ describe('with a generated snake-case endpoint', function() {
168
+ beforeEach(function() {
169
+ getConfig(path.join(dir, '.yo-rc.json')).then(config => {
170
+ return runEndpointGen('foo-bar', {config: config['generator-angular-fullstack']});
171
+ });
172
173
+
174
+ it('should run server tests successfully', function() {
175
+ return runCmd('grunt test:server').should.be.fulfilled();
176
177
178
179
if(!process.env.SKIP_E2E) {
180
it('should run e2e tests successfully'); //'grunt test:e2e'
0 commit comments