File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ public static function fileExists($name)
19
19
"File {$ name } already exists at path. "
20
20
);
21
21
}
22
- }
22
+ }
Original file line number Diff line number Diff line change @@ -102,13 +102,13 @@ public function it_doesnt_overwrite_components_that_already_exist()
102
102
$ file = resource_path ('assets/js/components/NewComponent.vue ' );
103
103
104
104
Artisan::call ('vueg:component ' , [
105
- 'name ' => 'NewComponent '
105
+ 'name ' => 'NewComponent ' ,
106
106
]);
107
107
108
108
$ this ->assertFileExists ($ file );
109
109
110
110
Artisan::call ('vueg:component ' , [
111
- 'name ' => 'NewComponent '
111
+ 'name ' => 'NewComponent ' ,
112
112
]);
113
113
}
114
114
@@ -208,13 +208,13 @@ public function it_doesnt_overwrite_mixin_that_already_exist()
208
208
$ file = resource_path ('assets/js/mixins/NewMixin.js ' );
209
209
210
210
Artisan::call ('vueg:mixin ' , [
211
- 'name ' => 'NewMixin '
211
+ 'name ' => 'NewMixin ' ,
212
212
]);
213
213
214
214
$ this ->assertFileExists ($ file );
215
215
216
216
Artisan::call ('vueg:mixin ' , [
217
- 'name ' => 'NewMixin '
217
+ 'name ' => 'NewMixin ' ,
218
218
]);
219
219
}
220
220
}
You can’t perform that action at this time.
0 commit comments