mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-08-01 04:01:01 +00:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { NightwatchBrowser } from 'nightwatch';
|
|
import { BASE } from '../e2e.const';
|
|
|
|
const BASE_URL = `${BASE}`;
|
|
|
|
module.exports = {
|
|
async command(this: NightwatchBrowser, url: string = BASE_URL) {
|
|
return this.url(url);
|
|
},
|
|
};
|