Skip to content

Commit dcf5021

Browse files
committed
[isolate] fixed test fixtures naming
1 parent 9be20ef commit dcf5021

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
File renamed without changes.

test/isolate-test.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ function assertResultsFinish(results, expected) {
5454

5555
vows.describe('vows/isolate').addBatch({
5656
'Running vows with -i flag for test/fixtures/isolate/': {
57-
'passing-test.js': {
57+
'passing.js': {
5858
'with default reporter': {
59-
topic: generateTopic(null, 'passing-test.js'),
59+
topic: generateTopic(null, 'passing.js'),
6060
'should be ok': assertExecOk
6161
},
6262
'with json reporter': {
63-
topic: generateTopic('--json', 'passing-test.js'),
63+
topic: generateTopic('--json', 'passing.js'),
6464
'should be ok': assertExecOk,
6565
'should have correct output': function(r) {
6666
var results = parseResults(r.stdout)
@@ -75,9 +75,9 @@ vows.describe('vows/isolate').addBatch({
7575
}
7676
}
7777
},
78-
'failing-test.js': {
78+
'failing.js': {
7979
'with json reporter': {
80-
topic: generateTopic('--json', 'failing-test.js'),
80+
topic: generateTopic('--json', 'failing.js'),
8181
'should be not ok': assertExecNotOk,
8282
'should have correct output though': function(r) {
8383
var results = parseResults(r.stdout);
@@ -89,9 +89,9 @@ vows.describe('vows/isolate').addBatch({
8989
}
9090
}
9191
},
92-
'stderr-test.js': {
92+
'stderr.js': {
9393
'with json reporter': {
94-
topic: generateTopic('--json', 'stderr-test.js'),
94+
topic: generateTopic('--json', 'stderr.js'),
9595
'should be ok': assertExecOk,
9696
'should have stderr': function(r) {
9797
assert.equal(r.stderr,
@@ -107,9 +107,9 @@ vows.describe('vows/isolate').addBatch({
107107
}
108108
}
109109
},
110-
'log-test.js': {
110+
'log.js': {
111111
'with json reporter': {
112-
topic: generateTopic('--json', 'log-test.js'),
112+
topic: generateTopic('--json', 'log.js'),
113113
'should be ok': assertExecOk,
114114
'should have correct output': function(r) {
115115
var results= parseResults(r.stdout);

0 commit comments

Comments
 (0)