-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ярослав Кикоть
authored and
Ярослав Кикоть
committed
Sep 1, 2018
1 parent
c222428
commit b19b1fa
Showing
8 changed files
with
59 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
|
||
dist: trusty | ||
sudo: false | ||
|
||
language: node_js | ||
node_js: | ||
- "8" | ||
|
||
sudo: required | ||
addons: | ||
chrome: stable # have Travis install Chrome stable. | ||
install: | ||
- npm install | ||
script: | ||
- npm run test | ||
cache: | ||
directories: | ||
- ./node_modules | ||
|
||
install: | ||
- npm install | ||
- node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { NgxTreeDndModule } from './ngx-tree-dnd.module'; | ||
|
||
describe('NgxTreeDndModule', () => { | ||
let ngxTreeDndModule: NgxTreeDndModule; | ||
|
||
beforeEach(() => { | ||
ngxTreeDndModule = new NgxTreeDndModule(); | ||
}); | ||
|
||
it('should create an instance', () => { | ||
expect(ngxTreeDndModule).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { TestModule } from './test.module'; | ||
|
||
describe('TestModule', () => { | ||
let testModule: TestModule; | ||
|
||
beforeEach(() => { | ||
testModule = new TestModule(); | ||
}); | ||
|
||
it('should create an instance', () => { | ||
expect(testModule).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule | ||
], | ||
declarations: [] | ||
}) | ||
export class TestModule { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"types": [] | ||
}, | ||
"exclude": [ | ||
"src/test.ts", | ||
"test.ts", | ||
"**/*.spec.ts" | ||
] | ||
} |