playback now does entire project instead of single function
I'm testing an internal company website using scripts (Javascript). Everything has been going well but all of a sudden when I try to playback a single test, Test Complete is playing back the entire project.
For instance I'm trying to playback a single function. I select the function and hit the playback button and it starts playing back the entire project.
I tried right clicking and using the 'Run current routine' but it still kicks off a project playback.
Did I alter a setting somehow with out realizing it (accidental hot key)?
Ok so got the solution from the Ticket.
Rookie Scripting mistake/friday thinking about the weekend maybe??
I had the following in my common functions script
exports.SPLogin = SPLogin();
it should've been
module.exports.SPLogin = SPLogin():
thanks everyone for the help!