Skip to content

Commit

Permalink
move es6 tests to the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Apr 20, 2022
1 parent 8ba8829 commit ff86f62
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.mozilla.javascript.tests;
package org.mozilla.javascript.tests.es6;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.drivers.LanguageVersion;
import org.mozilla.javascript.drivers.RhinoTest;
import org.mozilla.javascript.drivers.ScriptTestsBase;

@RhinoTest("testsrc/jstests/stringify-java-objects.js")
@RhinoTest("testsrc/jstests/es6/stringify-java-objects.js")
@LanguageVersion(Context.VERSION_ES6)
public class StringifyJavaObjectsTest extends ScriptTestsBase {}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.javascript.tests;
package org.mozilla.javascript.tests.es6;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.drivers.LanguageVersion;
import org.mozilla.javascript.drivers.RhinoTest;
import org.mozilla.javascript.drivers.ScriptTestsBase;

@RhinoTest("testsrc/jstests/stringify-on-regexp-object.js")
@RhinoTest("testsrc/jstests/es6/stringify-on-regexp-object.js")
@LanguageVersion(Context.VERSION_ES6)
public class StringifyOnRegExpObject extends ScriptTestsBase {}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.mozilla.javascript.tests;
package org.mozilla.javascript.tests.es6;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.drivers.LanguageVersion;
import org.mozilla.javascript.drivers.RhinoTest;
import org.mozilla.javascript.drivers.ScriptTestsBase;

@RhinoTest("testsrc/jstests/stringify-xml.js")
@RhinoTest("testsrc/jstests/es6/stringify-xml.js")
@LanguageVersion(Context.VERSION_ES6)
public class StringifyXmlTest extends ScriptTestsBase {}

0 comments on commit ff86f62

Please sign in to comment.