Skip to content

Commit

Permalink
fix(tests): remove client and server separation
Browse files Browse the repository at this point in the history
  • Loading branch information
Walker Leite committed Jun 14, 2018
1 parent 29533ac commit cd4ac8c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ const commands = [
{cmd: './node_modules/.bin/vue', args: ['init', '.', 'test-project'], responses: initQuestions},
{cmd: 'npm', args: ['install'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'lint'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test:server'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test:client'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'build'], cwd: 'test-project'},
{cmd: 'rm', args: ['-r', 'test-project'], ignoreErrors: true},
{cmd: './node_modules/.bin/vue', args: ['init', '.', 'test-project'], responses: initNoExtQuestions},
{cmd: 'npm', args: ['install'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'lint'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test:server'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test:client'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'test'], cwd: 'test-project'},
{cmd: 'npm', args: ['run', 'build'], cwd: 'test-project'},
];
/* eslint-enable max-len */
Expand Down

0 comments on commit cd4ac8c

Please sign in to comment.