Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'testLib/ClassA.js')
-rw-r--r--testLib/ClassA.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/testLib/ClassA.js b/testLib/ClassA.js
new file mode 100644
index 0000000..8aec279
--- /dev/null
+++ b/testLib/ClassA.js
@@ -0,0 +1,12 @@
+class A {
+ get prop1() {
+ return "A"
+ }
+ get prop2() {
+ return "something"
+ }
+
+ method2() { return "testA"; }
+}
+
+module.exports = A;