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.
ngcp-csc-ui/t/components/login.js

14 lines
344 B

import Vue from 'vue'
import Login from '../../src/components/Login.vue'
import { assert } from 'chai';
describe('Login', function() {
it('should initialize with default data', function(){
var defaultData = Login.data();
assert.equal(defaultData.username, '');
assert.equal(defaultData.password, '');
});
});