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

12 lines
320 B

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