blob: d6949aed04a4845d53741f95cd0fa59c2b5e865c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016-2017 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution,
* and is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.wst.jsdt.integration.tests;
import org.eclipse.wst.jsdt.integration.tests.nodejs.NodeJSDebuggerTest;
import org.eclipse.wst.jsdt.integration.tests.nodejs.NodeJSLauncherTest;
import org.eclipse.wst.jsdt.integration.tests.npm.NpmInitTest;
import org.eclipse.wst.jsdt.integration.tests.npm.NpmShortcutsTest;
import org.jboss.reddeer.junit.runner.RedDeerSuite;
import org.eclipse.wst.jsdt.integration.tests.bower.BowerInitTest;
import org.eclipse.wst.jsdt.integration.tests.bower.BowerUpdateTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(RedDeerSuite.class)
@Suite.SuiteClasses({
//NodeJS Debugger Tests
NodeJSLauncherTest.class,
NodeJSDebuggerTest.class,
//npm
NpmInitTest.class,
NpmShortcutsTest.class,
//Bower Tests
BowerInitTest.class,
BowerUpdateTest.class
// ...
})
public class JSDTIntegrationTests {
}