refactor: Update user update routes to be under auth namespace

This commit is contained in:
Blade Barringer
2016-03-16 08:58:14 -05:00
parent 22d25f8be3
commit d1af7adff6
4 changed files with 12 additions and 12 deletions

View File

@@ -4,8 +4,8 @@ import {
} from '../../../../helpers/api-integration/v3';
import { model as User } from '../../../../../website/src/models/user';
describe('PUT /user/update-username', async () => {
let endpoint = '/user/update-username';
describe('PUT /user/auth/update-username', async () => {
let endpoint = '/user/auth/update-username';
let user;
let newUsername = 'new-username';
let existingUsername = 'existing-username';