Welcome to mirror list, hosted at ThFree Co, Russian Federation.

end.js « fixtures « test « stdout-stream « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdfeba31ec0c280763dec07fbbb9c7fb54dacf8f (plain)
1
2
3
4
5
6
7
8
var stdout = require('../../');

stdout.write('stdout');
stdout.end(function() {
	setTimeout(function() {
		process.exit(0);
	}, 10);
});