Skip to content

Instantly share code, notes, and snippets.

View geekdanitek's full-sized avatar
🎯
Focusing

Daniel Adedeji geekdanitek

🎯
Focusing
View GitHub Profile
It was fun working on the Vuejs SDK of Jitsi meet. The project involved a lot of thought process especially when
faced with a blocker.
The project was divided into different parts as stated in my proposal by a few modifications were made to properly suit our expection.
Initially, Vite was meant to be used for building the files but we decided to use `vue-sfc-rollup` package which uses rollup and babel to bundle the files.
Also, I wasn’t able to setup unit testing due to the timeframe but that has been added to my post GSoC contribution plan.
@geekdanitek
geekdanitek / test.js
Last active March 19, 2019 11:21
Demo unit test
import chai from 'chai';
import chaiHttp from 'chai-http';
import server from 'app.js';
const { expect } = chai;
const should = chai.should();
describe('User login', () => {
it('It should not login the user if the password length is not greater than five', (done)=> {
chai.request(server)