Skip to content

Commit

Permalink
chore(test): Always use latest cypress-runner; update latest test har…
Browse files Browse the repository at this point in the history
…ness
  • Loading branch information
christopherthielen committed Jan 9, 2019
1 parent 6ae195f commit b24c8f7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
Binary file modified test/typedoc-latest.tgz
Binary file not shown.
12 changes: 4 additions & 8 deletions test/typedoc-latest/cypress/integration/example_spec.js
Expand Up @@ -32,13 +32,11 @@ describe('docs', () => {

cy.contains('External module root');

cy
.get('ul.tsd-index-list')
cy.get('ul.tsd-index-list')
.get('a')
.contains('File1');

cy
.get('ul.tsd-index-list')
cy.get('ul.tsd-index-list')
.get('a')
.contains('File2');
});
Expand All @@ -54,8 +52,7 @@ describe('docs', () => {

cy.contains('External module dir1');

cy
.get('ul.tsd-index-list')
cy.get('ul.tsd-index-list')
.get('a')
.contains('Nest1');
});
Expand All @@ -71,8 +68,7 @@ describe('docs', () => {

cy.contains('External module dir2');

cy
.get('ul.tsd-index-list')
cy.get('ul.tsd-index-list')
.get('a')
.contains('Nest2');
});
Expand Down
2 changes: 1 addition & 1 deletion test/typedoc-latest/package.json
Expand Up @@ -11,7 +11,7 @@
"author": "Chris Thielen",
"license": "MIT",
"devDependencies": {
"@uirouter/cypress-runner": "^1.0.9",
"@uirouter/cypress-runner": "latest",
"typedoc": "latest",
"typedoc-plugin-external-module-name": "latest"
}
Expand Down
4 changes: 2 additions & 2 deletions test/typedoc-latest/tsconfig.json
Expand Up @@ -2,12 +2,12 @@
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"lib": [ "es6", "dom" ],
"lib": ["es6", "dom"],
"noImplicitAny": true,
"skipLibCheck": true,
"noEmit": true,
"target": "es5",
"typeRoots": ["typings"]
},
"files": [ "src/index.ts" ]
"files": ["src/index.ts"]
}

0 comments on commit b24c8f7

Please sign in to comment.