Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
489 B
28 lines
489 B
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
h1 {
|
|
font-size: 18px;
|
|
}
|
|
h2 {
|
|
font-size: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/chai/chai.js"></script>
|
|
<script>
|
|
mocha.setup('tdd')
|
|
</script>
|
|
<script src="../dist/index.js"></script>
|
|
<script src="../dist/test.js"></script>
|
|
<div id="mocha"></div>
|
|
<script>
|
|
mocha.run()
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|