Skip to content

Commit cd4ac8c

Browse files
author
Walker Leite
committed
fix(tests): remove client and server separation
1 parent 29533ac commit cd4ac8c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ const commands = [
1515
{cmd: './node_modules/.bin/vue', args: ['init', '.', 'test-project'], responses: initQuestions},
1616
{cmd: 'npm', args: ['install'], cwd: 'test-project'},
1717
{cmd: 'npm', args: ['run', 'lint'], cwd: 'test-project'},
18-
{cmd: 'npm', args: ['run', 'test:server'], cwd: 'test-project'},
19-
{cmd: 'npm', args: ['run', 'test:client'], cwd: 'test-project'},
18+
{cmd: 'npm', args: ['run', 'test'], cwd: 'test-project'},
2019
{cmd: 'npm', args: ['run', 'build'], cwd: 'test-project'},
2120
{cmd: 'rm', args: ['-r', 'test-project'], ignoreErrors: true},
2221
{cmd: './node_modules/.bin/vue', args: ['init', '.', 'test-project'], responses: initNoExtQuestions},
2322
{cmd: 'npm', args: ['install'], cwd: 'test-project'},
2423
{cmd: 'npm', args: ['run', 'lint'], cwd: 'test-project'},
25-
{cmd: 'npm', args: ['run', 'test:server'], cwd: 'test-project'},
26-
{cmd: 'npm', args: ['run', 'test:client'], cwd: 'test-project'},
24+
{cmd: 'npm', args: ['run', 'test'], cwd: 'test-project'},
2725
{cmd: 'npm', args: ['run', 'build'], cwd: 'test-project'},
2826
];
2927
/* eslint-enable max-len */

0 commit comments

Comments
 (0)