-
-
Notifications
You must be signed in to change notification settings - Fork 23
Browsertesting #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Browsertesting #57
Changes from 7 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8fb401e
Add testrunner.html
srijken 8faaaeb
use requirejs
srijken 573ef06
Distinguish between node and browser tests
srijken a542b04
introduce gulp PhantomJS step
srijken ba7a01d
Run node tests in nodespec file
srijken 6e392f1
Add dependency on test build
srijken ed6c65d
Make sure the in mem tests run in browser and node
srijken eafab43
Remove node specific typings from browser test
srijken 8268602
enable RDP
srijken 3aa6359
disable RDP
srijken 24c3ade
use runSequence to sequence test suites
srijken cf70e49
use gulp-load-plugins
srijken 152448b
fix typo, and use more gulp-load-plugins
srijken File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,23 @@ | ||
import { NodeFileStorage } from './NodeFileStorage'; | ||
|
||
import { describeStorage } from './Storage-spec'; | ||
|
||
import * as mockFs from 'mock-fs'; | ||
|
||
let mockedFs; | ||
|
||
let nodeFileStorageFactory = (maxItems?) => { | ||
return new NodeFileStorage('test', './fileStorage', 'ex-', maxItems, mockedFs); | ||
}; | ||
|
||
let nodeFileStorageInitializer = () => { | ||
mockedFs = mockFs.fs({ | ||
'fileStorage': {} | ||
}); | ||
}; | ||
|
||
describeStorage('NodeFileStorage', | ||
nodeFileStorageFactory, | ||
nodeFileStorageInitializer, | ||
true | ||
); |
This file contains hidden or 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 hidden or 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 hidden or 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,19 @@ | ||
require.config({ | ||
baseUrl: 'node_modules', | ||
paths: { | ||
chai: 'chai/chai', | ||
TraceKit: 'tracekit/tracekit' | ||
} | ||
}); | ||
|
||
require([ | ||
'../dist/temp/exceptionless-browserspec' | ||
], function() { | ||
|
||
if (typeof mochaPhantomJS !== "undefined") { mochaPhantomJS.run(); } | ||
else { | ||
|
||
console.log('running mocha'); | ||
mocha.run(); | ||
} | ||
}); |
This file contains hidden or 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,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Mocha</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="node_modules/mocha/mocha.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="mocha"> | ||
<p><a href="?">Index</a></p> | ||
</div> | ||
<div id="messages"></div> | ||
<div id="fixtures"></div> | ||
<script src="node_modules/mocha/mocha.js"></script> | ||
<script> | ||
mocha.setup('bdd'); | ||
</script> | ||
<script data-main="test.config.js" src="node_modules/requirejs/require.js"></script> | ||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should these be here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should leave node.d.ts and stack-trace.d.ts out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done..