Skip to content

Commit 913575e

Browse files
committed
remove test suffix
1 parent d02b4cd commit 913575e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/create/write-demo.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ var files = [
3434
path_1.join('.gitignore'),
3535
path_1.join('tutorial', 'tutorial.md'),
3636
path_1.join('tutorial', '01', 'index.md'),
37-
path_1.join('tutorial', '01', '01.spec.js'),
38-
path_1.join('tutorial', '01', '02.spec.js'),
37+
path_1.join('tutorial', '01', '01.js'),
38+
path_1.join('tutorial', '01', '02.js'),
3939
path_1.join('tutorial', '02', 'index.md'),
40-
path_1.join('tutorial', '02', '01.spec.js'),
41-
path_1.join('tutorial', '02', '02.spec.js')
40+
path_1.join('tutorial', '02', '01.js'),
41+
path_1.join('tutorial', '02', '02.js')
4242
];
4343
function createTutorialMd(dir) {
4444
return new Promise(function (resolve, reject) {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/create/write-demo.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const files = [
3535
join('.gitignore'),
3636
join('tutorial', 'tutorial.md'),
3737
join('tutorial', '01', 'index.md'),
38-
join('tutorial', '01', '01.spec.js'),
39-
join('tutorial', '01', '02.spec.js'),
38+
join('tutorial', '01', '01.js'),
39+
join('tutorial', '01', '02.js'),
4040
join('tutorial', '02', 'index.md'),
41-
join('tutorial', '02', '01.spec.js'),
42-
join('tutorial', '02', '02.spec.js')
41+
join('tutorial', '02', '01.js'),
42+
join('tutorial', '02', '02.js')
4343
];
4444

4545
export function createTutorialMd(dir: string): Promise<boolean> {

0 commit comments

Comments
 (0)