mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 21:38:48 +00:00
* add login with URL params * use login function for faster tests * reduce timeout possiblities in job * remove unused imports * remove debug
12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
export const classicUrl = 'http://127.0.0.1:8000';
|
|
|
|
export const user = {
|
|
username: 'allaccess',
|
|
password: 'nolimits'
|
|
};
|
|
|
|
export const adminuser = {
|
|
username: 'admin',
|
|
password: 'inventree'
|
|
};
|